diff options
Diffstat (limited to 'src/filedef.h')
-rw-r--r-- | src/filedef.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filedef.h b/src/filedef.h index d9d2f46..5d64763 100644 --- a/src/filedef.h +++ b/src/filedef.h @@ -134,8 +134,8 @@ class FileDef : public Definition void addUsingDirective(NamespaceDef *nd); NamespaceSDict *getUsedNamespaces() const { return usingDirList; } - void addUsingDeclaration(ClassDef *cd); - ClassSDict *getUsedClasses() const { return usingDeclList; } + void addUsingDeclaration(Definition *def); + SDict<Definition> *getUsedClasses() const { return usingDeclList; } void combineUsingRelations(); bool generateSourceFile() const; @@ -188,7 +188,7 @@ class FileDef : public Definition QDict<IncludeInfo> *includedByDict; QList<IncludeInfo> *includedByList; NamespaceSDict *usingDirList; - ClassSDict *usingDeclList; + SDict<Definition> *usingDeclList; //DefineList *defineList; QCString path; QCString filepath; |