summaryrefslogtreecommitdiffstats
path: root/src/example.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>1999-12-15 19:37:58 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>1999-12-15 19:37:58 (GMT)
commit916d6d5c6f6c9d14c4c9a636582671c81447f54a (patch)
treeb859924ab8503fed25bbfbc7ea96b72b9dee34b0 /src/example.h
parenta54eecdf4b3c961ff41bc5d3ea6f21713e08f903 (diff)
downloadDoxygen-916d6d5c6f6c9d14c4c9a636582671c81447f54a.zip
Doxygen-916d6d5c6f6c9d14c4c9a636582671c81447f54a.tar.gz
Doxygen-916d6d5c6f6c9d14c4c9a636582671c81447f54a.tar.bz2
mods for doxygen-0.49-991106
Diffstat (limited to 'src/example.h')
-rw-r--r--src/example.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/example.h b/src/example.h
index b43733f..0c3fcb2 100644
--- a/src/example.h
+++ b/src/example.h
@@ -18,6 +18,7 @@
#define EXAMPLE_H
#include "qtbc.h"
+#include <qdict.h>
class ClassDef;
class MemberName;
@@ -40,6 +41,10 @@ class ExampleList : public QList<Example>
}
};
-typedef QDict<Example> ExampleDict;
+class ExampleDict : public QDict<Example>
+{
+ public:
+ ExampleDict(int size=17) : QDict<Example>(size) {}
+};
#endif