diff options
Diffstat (limited to 'src/namespacedef.h')
-rw-r--r-- | src/namespacedef.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/namespacedef.h b/src/namespacedef.h index d6f4b59..ffcc8d2 100644 --- a/src/namespacedef.h +++ b/src/namespacedef.h @@ -49,7 +49,11 @@ class NamespaceDef : public Definition void computeAnchors(); int countMembers(); void addUsingDirective(NamespaceDef *nd); - NamespaceList *getUsedNamespaces() const { return usingList; } + NamespaceList *getUsedNamespaces() const { return usingDirList; } + void addUsingDeclaration(ClassDef *cd); + ClassList *getUsedClasses() const { return usingDeclList; } + + //const char *getReference() { return reference; } //bool isVisible() //{ @@ -81,7 +85,8 @@ class NamespaceDef : public Definition QStrList files; ClassList *classList; ClassDict *classDict; - NamespaceList *usingList; + NamespaceList *usingDirList; + ClassList *usingDeclList; MemberList allMemberList; MemberList defineMembers; |