diff options
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) |