summaryrefslogtreecommitdiffstats
path: root/src/filedef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filedef.h')
-rw-r--r--src/filedef.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/filedef.h b/src/filedef.h
index d0e7c02..1d2d121 100644
--- a/src/filedef.h
+++ b/src/filedef.h
@@ -133,9 +133,10 @@ class FileDef : public Definition
PackageDef *packageDef() const { return package; }
void addUsingDirective(NamespaceDef *nd);
- NamespaceList *getUsedNamespaces() const { return usingDirList; }
+ NamespaceSDict *getUsedNamespaces() const { return usingDirList; }
void addUsingDeclaration(ClassDef *cd);
- ClassList *getUsedClasses() const { return usingDeclList; }
+ ClassSDict *getUsedClasses() const { return usingDeclList; }
+ void combineUsingRelations();
bool generateSourceFile() const;
@@ -186,8 +187,8 @@ class FileDef : public Definition
QList<IncludeInfo> *includeList;
QDict<IncludeInfo> *includedByDict;
QList<IncludeInfo> *includedByList;
- NamespaceList *usingDirList;
- ClassList *usingDeclList;
+ NamespaceSDict *usingDirList;
+ ClassSDict *usingDeclList;
//DefineList *defineList;
QCString path;
QCString filepath;