summaryrefslogtreecommitdiffstats
path: root/src/classlist.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-04-23 18:39:17 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-04-23 18:39:17 (GMT)
commita790b4aefe37b616ec4563877e01aa5f99447c85 (patch)
treeae15def425ebe4c6c13d7b4ffd8e147e03d535b3 /src/classlist.h
parent37905e0a0fcc820a556d56e609335afd21f8a929 (diff)
downloadDoxygen-a790b4aefe37b616ec4563877e01aa5f99447c85.zip
Doxygen-a790b4aefe37b616ec4563877e01aa5f99447c85.tar.gz
Doxygen-a790b4aefe37b616ec4563877e01aa5f99447c85.tar.bz2
Release-1.1.2-20000423
Diffstat (limited to 'src/classlist.h')
-rw-r--r--src/classlist.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/classlist.h b/src/classlist.h
index 332eeec..4692ac0 100644
--- a/src/classlist.h
+++ b/src/classlist.h
@@ -18,6 +18,9 @@
#ifndef CLASSLIST_H
#define CLASSLIST_H
+#include <qlist.h>
+#include <qdict.h>
+
#include "classdef.h"
class ClassList : public QList<ClassDef>
@@ -35,4 +38,11 @@ class ClassListIterator : public QListIterator<ClassDef>
ClassListIterator(const ClassList &list);
};
+class ClassDict : public QDict<ClassDef>
+{
+ public:
+ ClassDict(int size) : QDict<ClassDef>(size) {}
+ ~ClassDict() {}
+};
+
#endif