summaryrefslogtreecommitdiffstats
path: root/src/filedef.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-05-28 19:46:08 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-05-28 19:46:08 (GMT)
commit832e08dcc70203d84f75249583a95fa172492aa2 (patch)
tree1f7723f69aa2917d2408894c68e7150f7b7ff3d5 /src/filedef.h
parentf38608d4bec002a5051c860a599dd4d5229a9671 (diff)
downloadDoxygen-832e08dcc70203d84f75249583a95fa172492aa2.zip
Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.tar.gz
Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.tar.bz2
Release-1.1.3-20000528
Diffstat (limited to 'src/filedef.h')
-rw-r--r--src/filedef.h7
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;