diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-02-27 20:01:29 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-02-27 20:01:29 (GMT) |
commit | d745dd3737ece0f328e515b1cf10306da0901597 (patch) | |
tree | 2d189d04d6f9413eb324fae5f56f273f3855ff8b /src/namespacedef.h | |
parent | 11de530ba769e4e2735a20a74262380d51f8772f (diff) | |
download | Doxygen-d745dd3737ece0f328e515b1cf10306da0901597.zip Doxygen-d745dd3737ece0f328e515b1cf10306da0901597.tar.gz Doxygen-d745dd3737ece0f328e515b1cf10306da0901597.tar.bz2 |
Release-1.4.1-20050227
Diffstat (limited to 'src/namespacedef.h')
-rw-r--r-- | src/namespacedef.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/namespacedef.h b/src/namespacedef.h index 90c55c2..caedfde 100644 --- a/src/namespacedef.h +++ b/src/namespacedef.h @@ -41,12 +41,15 @@ class NamespaceDef : public Definition const char *name,const char *ref=0, const char *refFile=0); ~NamespaceDef(); - DefType definitionType() { return TypeNamespace; } + DefType definitionType() const { return TypeNamespace; } QCString getOutputFileBase() const; void insertUsedFile(const char *fname); void writeDetailedDocumentation(OutputList &ol); void writeDocumentation(OutputList &ol); + void writeMemberDocumentation(OutputList &ol); + void writeMemberPages(OutputList &ol); + void writeQuickMemberLinks(OutputList &ol,MemberDef *currentMd) const; void insertClass(ClassDef *cd); void insertNamespace(NamespaceDef *nd); |