summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.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/namespacedef.h
parenta54eecdf4b3c961ff41bc5d3ea6f21713e08f903 (diff)
downloadDoxygen-916d6d5c6f6c9d14c4c9a636582671c81447f54a.zip
Doxygen-916d6d5c6f6c9d14c4c9a636582671c81447f54a.tar.gz
Doxygen-916d6d5c6f6c9d14c4c9a636582671c81447f54a.tar.bz2
mods for doxygen-0.49-991106
Diffstat (limited to 'src/namespacedef.h')
-rw-r--r--src/namespacedef.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/namespacedef.h b/src/namespacedef.h
index b34c65b..cf661b5 100644
--- a/src/namespacedef.h
+++ b/src/namespacedef.h
@@ -27,6 +27,7 @@ class OutputList;
class ClassList;
class MemberList;
class MemberDef;
+class NamespaceList;
class NamespaceDef : public Definition
{
@@ -41,6 +42,8 @@ class NamespaceDef : public Definition
void insertMember(MemberDef *md);
void computeAnchors();
int countMembers();
+ void addUsingDirective(NamespaceDef *nd);
+ NamespaceList *getUsedNamespaces() const { return usingList; }
//const char *getReference() { return reference; }
//bool isVisible()
//{
@@ -71,6 +74,7 @@ class NamespaceDef : public Definition
QStrList files;
ClassList *classList;
MemberList *memList;
+ NamespaceList *usingList;
};
class NamespaceList : public QList<NamespaceDef>