diff options
Diffstat (limited to 'src/scanner.h')
-rw-r--r-- | src/scanner.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/scanner.h b/src/scanner.h index 1e6bad7..30894cd 100644 --- a/src/scanner.h +++ b/src/scanner.h @@ -20,11 +20,15 @@ #include "qtbc.h" #include <stdio.h> #include <qlist.h> +#include <qintdict.h> #include "entry.h" #include "code.h" +#include "membergroup.h" class OutputList; +typedef QIntDict<MemberGroup> MemberGroupDict; +typedef QIntDictIterator<MemberGroup> MemberGroupDictIterator; extern void parseMain(Entry *); extern void parseDoc(OutputList &ol,const char *clName, const char *memName, @@ -32,4 +36,7 @@ extern void parseDoc(OutputList &ol,const char *clName, const char *memName, extern void parseExample(OutputList &ol,const QCString &docString, const char *fileName); extern void parseText(OutputList &ol,const QCString &txtString); + +extern MemberGroupDict memberGroupDict; + #endif |