diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 10:50:10 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 10:50:10 +0900 |
commit | 738086af77ab085837d0044a33a5d954a3edc6f5 (patch) | |
tree | 3b965243967bdf1aab50ec3dfe74ebdaf75b6942 /src/namespacedef.h | |
parent | 835421dad74e8989002b592f703a23d87f211df0 (diff) | |
download | doxygen-738086af77ab085837d0044a33a5d954a3edc6f5.tar.gz doxygen-738086af77ab085837d0044a33a5d954a3edc6f5.tar.bz2 doxygen-738086af77ab085837d0044a33a5d954a3edc6f5.zip |
Imported Upstream version 1.8.6upstream/1.8.6
Diffstat (limited to 'src/namespacedef.h')
-rw-r--r-- | src/namespacedef.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/namespacedef.h b/src/namespacedef.h index ff64107..2037d23 100644 --- a/src/namespacedef.h +++ b/src/namespacedef.h @@ -22,6 +22,7 @@ #include <qdict.h> #include "sortdict.h" #include "definition.h" +#include "filedef.h" class MemberList; class ClassDef; @@ -45,7 +46,7 @@ class NamespaceDef : public Definition DefType definitionType() const { return TypeNamespace; } QCString getOutputFileBase() const; QCString anchor() const { return QCString(); } - void insertUsedFile(const char *fname); + void insertUsedFile(FileDef *fd); void writeDocumentation(OutputList &ol); void writeMemberPages(OutputList &ol); @@ -92,6 +93,8 @@ class NamespaceDef : public Definition /*! Returns the namespaces contained in this namespace */ NamespaceSDict *getNamespaceSDict() const { return namespaceSDict; } + QCString title() const; + bool visited; private: @@ -115,7 +118,7 @@ class NamespaceDef : public Definition void addNamespaceAttributes(OutputList &ol); QCString fileName; - QStrList files; + FileList files; NamespaceSDict *usingDirList; SDict<Definition> *usingDeclList; |