ISLEman
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 <qlist.h>
22 #include <qdict.h>
23 
24 #include "classdef.h"
25 #include "sortdict.h"
26 
27 class Definition;
28 
30 class ClassList : public QList<ClassDef>
31 {
32  public:
33  ClassList();
34  ~ClassList();
35 
36  private:
37  int compareValues(const ClassDef *item1,const ClassDef *item2) const;
38 };
39 
41 class ClassListIterator : public QListIterator<ClassDef>
42 {
43  public:
44  ClassListIterator(const ClassList &list);
45 };
46 
48 class ClassDict : public QDict<ClassDef>
49 {
50  public:
51  ClassDict(int size) : QDict<ClassDef>(size) {}
52  ~ClassDict() {}
53 };
54 
56 class ClassSDict : public SDict<ClassDef>
57 {
58  public:
59  ClassSDict(int size=17) : SDict<ClassDef>(size) {}
60  ~ClassSDict() {}
61  void writeDeclaration(OutputList &ol,const ClassDef::CompoundType *filter=0,
62  const char *header=0,bool localNames=FALSE);
63  void writeDocumentation(OutputList &ol,Definition *container=0);
64  bool declVisible(const ClassDef::CompoundType *filter=0) const;
65  private:
66  int compareValues(const ClassDef *item1,const ClassDef *item2) const;
67 };
68 
69 class GenericsCollection : public QIntDict<ClassDef>
70 {
71  public:
73  ~GenericsCollection() {}
74 };
75 
77 {
78  public:
79  GenericsSDict() : m_dict(17) { m_dict.setAutoDelete(TRUE); }
80  ~GenericsSDict() {}
81  void insert(const QCString &key,ClassDef *cd);
82  ClassDef *find(const QCString &key);
83  private:
85 };
86 
87 #endif
Definition: qintdict.h:46
Definition: classlist.h:69
The common base class of all entity definitions found in the sources.
Definition: definition.h:92
An unsorted dictionary of ClassDef objects.
Definition: classlist.h:48
Definition: classlist.h:76
A sorted dictionary of ClassDef objects.
Definition: classlist.h:56
An iterator for ClassDef objects in a ClassList.
Definition: classlist.h:41
Ordered dictionary of elements of type T.
Definition: sortdict.h:73
A list of ClassDef objects.
Definition: classlist.h:30
Definition: qlist.h:126
Class representing a list of output generators that are written to in parallel.
Definition: outputlist.h:54
CompoundType
The various compound types.
Definition: classdef.h:63
This is an alternative implementation of QCString.
Definition: qcstring.h:131
A class representing of a compound symbol.
Definition: classdef.h:59
Definition: qlist.h:54