summaryrefslogtreecommitdiffstats
path: root/src/classlist.h
diff options
context:
space:
mode:
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