Doxygen
Loading...
Searching...
No Matches
classlist.h
Go to the documentation of this file.
1/******************************************************************************
2 *
3 *
4 *
5 * Copyright (C) 1997-2015 by Dimitri van Heesch.
6 *
7 * Permission to use, copy, modify, and distribute this software and its
8 * documentation under the terms of the GNU General Public License is hereby
9 * granted. No representations are made about the suitability of this software
10 * for any purpose. It is provided "as is" without express or implied warranty.
11 * See the GNU General Public License for more details.
12 *
13 * Documents produced by Doxygen are derivative works derived from the
14 * input used in their production; they are not affected by this license.
15 *
16 */
17
18#ifndef CLASSLIST_H
19#define CLASSLIST_H
20
21#include "linkedmap.h"
22#include "classdef.h"
23
24class Definition;
25
26class ClassLinkedMap : public LinkedMap<ClassDef>
27{
28};
29
30class ClassLinkedRefMap : public LinkedRefMap<ClassDef>
31{
32 public:
33 bool declVisible(const ClassDef::CompoundType *filter=nullptr) const;
34 void writeDeclaration(OutputList &ol,const ClassDef::CompoundType *filter,const QCString &header,bool localNames) const;
35 void writeDocumentation(OutputList &ol,const Definition * container=nullptr) const;
36};
37
38#endif
CompoundType
The various compound types.
Definition classdef.h:109
void writeDeclaration(OutputList &ol, const ClassDef::CompoundType *filter, const QCString &header, bool localNames) const
Definition classlist.cpp:53
bool declVisible(const ClassDef::CompoundType *filter=nullptr) const
Definition classlist.cpp:29
void writeDocumentation(OutputList &ol, const Definition *container=nullptr) const
Definition classlist.cpp:74
The common base class of all entity definitions found in the sources.
Definition definition.h:76
Container class representing a vector of objects with keys.
Definition linkedmap.h:36
Container class representing a vector of objects with keys.
Definition linkedmap.h:232