diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-28 20:38:57 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-28 20:38:57 (GMT) |
commit | f3e7209fed9703e8be668753d1083ba335121a6e (patch) | |
tree | 229ba1f0bd2e721f4cc81307b63d8c79051d1bc4 /src/namespacedef.cpp | |
parent | e952dab58265a6f21867e51f72d7d81ffe39e082 (diff) | |
download | Doxygen-f3e7209fed9703e8be668753d1083ba335121a6e.zip Doxygen-f3e7209fed9703e8be668753d1083ba335121a6e.tar.gz Doxygen-f3e7209fed9703e8be668753d1083ba335121a6e.tar.bz2 |
Release-1.3-rc1-20021128
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r-- | src/namespacedef.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp index b0842f5..cac8dc9 100644 --- a/src/namespacedef.cpp +++ b/src/namespacedef.cpp @@ -25,6 +25,7 @@ #include "memberlist.h" #include "doxygen.h" #include "message.h" +#include "docparser.h" NamespaceDef::NamespaceDef(const char *df,int dl, const char *name,const char *lref) : @@ -61,6 +62,24 @@ void NamespaceDef::distributeMemberGroupDocumentation() mg->distributeMemberGroupDocumentation(); } } + +void NamespaceDef::findSectionsInDocumentation() +{ + docFindSections(documentation(),0,this,0); + MemberGroupSDict::Iterator mgli(*memberGroupSDict); + MemberGroup *mg; + for (;(mg=mgli.current());++mgli) + { + mg->findSectionsInDocumentation(); + } + decDefineMembers.findSectionsInDocumentation(); + decProtoMembers.findSectionsInDocumentation(); + decTypedefMembers.findSectionsInDocumentation(); + decEnumMembers.findSectionsInDocumentation(); + decFuncMembers.findSectionsInDocumentation(); + decVarMembers.findSectionsInDocumentation(); +} + void NamespaceDef::insertUsedFile(const char *f) { if (files.find(f)==-1) |