doxygen
classlist.h
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 
24 class Definition;
25 
26 class ClassLinkedMap : public LinkedMap<ClassDef>
27 {
28 };
29 
30 class 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
The common base class of all entity definitions found in the sources.
Definition: definition.h:74
Container class representing a vector of objects with keys.
Definition: linkedmap.h:35
Container class representing a vector of objects with keys.
Definition: linkedmap.h:231
Class representing a list of output generators that are written to in parallel.
Definition: outputlist.h:530
CompoundType
The various compound types.
Definition: classdef.h:107
This is an alternative implementation of QCString.
Definition: qcstring.h:93
Definition: classlist.h:30
Definition: classlist.h:26