diff options
Diffstat (limited to 'src/groupdef.h')
-rw-r--r-- | src/groupdef.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/groupdef.h b/src/groupdef.h index 8a0088f..d32f781 100644 --- a/src/groupdef.h +++ b/src/groupdef.h @@ -100,6 +100,12 @@ class GroupDef : public Definition /* user defined member groups */ MemberGroupSDict *memberGroupSDict; + + FileList * getFiles() const { return fileList; } + ClassSDict * getClasses() const { return classSDict; } + NamespaceList * getNamespaces() const { return namespaceList; } + GroupList * getSubGroups() const { return groupList; } + PageSDict * getPages() const { return pageDict; } protected: void addMemberListToGroup(MemberList *,bool (MemberDef::*)() const); |