diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-09-28 18:26:46 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-09-28 18:26:46 (GMT) |
commit | b7473cd86e57053b866a719f160cd4d01e92f092 (patch) | |
tree | 01f67df4c4005875230919c5f826290b6a17a2e4 /src/groupdef.h | |
parent | a3133b16473d093f9c525cbf9d21fabbae7ae1ac (diff) | |
download | Doxygen-b7473cd86e57053b866a719f160cd4d01e92f092.zip Doxygen-b7473cd86e57053b866a719f160cd4d01e92f092.tar.gz Doxygen-b7473cd86e57053b866a719f160cd4d01e92f092.tar.bz2 |
Release-1.3.8-20040928
Diffstat (limited to 'src/groupdef.h')
-rw-r--r-- | src/groupdef.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/groupdef.h b/src/groupdef.h index 879b2a2..86f4e7a 100644 --- a/src/groupdef.h +++ b/src/groupdef.h @@ -37,6 +37,8 @@ class MemberGroupSDict; class MemberNameInfoSDict; class PageSDict; class PageDef; +class DirDef; +class DirList; class GroupDef : public Definition { @@ -53,8 +55,9 @@ class GroupDef : public Definition void addNamespace(const NamespaceDef *def); void addGroup(const GroupDef *def); void addParentGroup(const GroupDef *def); - void addPage(PageDef *def); // pages in this group - void addExample(const PageDef *def); // examples in this group + void addPage(PageDef *def); + void addExample(const PageDef *def); + void addDir(const DirDef *dd); bool insertMember(MemberDef *def,bool docOnly=FALSE); void removeMember(MemberDef *md); bool containsGroup(const GroupDef *def); // true if def is already a subgroup @@ -108,6 +111,7 @@ class GroupDef : public Definition NamespaceList * getNamespaces() const { return namespaceList; } GroupList * getSubGroups() const { return groupList; } PageSDict * getPages() const { return pageDict; } + DirList * getDirs() const { return dirList; } protected: void addMemberListToGroup(MemberList *,bool (MemberDef::*)() const); @@ -122,6 +126,7 @@ class GroupDef : public Definition GroupList *groupList; // list of sub groups. PageSDict *pageDict; // list of pages in the group PageSDict *exampleDict; // list of examples in the group + DirList *dirList; // list of directories in the group MemberList *allMemberList; MemberNameInfoSDict *allMemberNameInfoSDict; @@ -153,6 +158,7 @@ void addGroupToGroups(Entry *root,GroupDef *subGroup); void addMemberToGroups(Entry *root,MemberDef *md); void addPageToGroups(Entry *root,PageDef *pd); void addExampleToGroups(Entry *root,PageDef *eg); +void addDirToGroups(Entry *root,DirDef *dd); #endif |