diff options
Diffstat (limited to 'src/filedef.h')
-rw-r--r-- | src/filedef.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/filedef.h b/src/filedef.h index 3791473..01e59d6 100644 --- a/src/filedef.h +++ b/src/filedef.h @@ -117,7 +117,9 @@ class FileDef : public Definition void computeAnchors(); void addUsingDirective(NamespaceDef *nd); - NamespaceList *getUsedNamespaces() const { return usingList; } + NamespaceList *getUsedNamespaces() const { return usingDirList; } + void addUsingDeclaration(ClassDef *cd); + ClassList *getUsedClasses() const { return usingDeclList; } void setGenerateSource(bool b) { isSource=b; } bool generateSource() const { return isSource; } @@ -142,7 +144,8 @@ class FileDef : public Definition QList<IncludeInfo> *includeList; NamespaceDict *namespaceDict; NamespaceList *namespaceList; - NamespaceList *usingList; + NamespaceList *usingDirList; + ClassList *usingDeclList; //DefineList *defineList; QCString path; QCString filepath; |