diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-10 18:17:19 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-10 18:17:19 (GMT) |
commit | d1e917df5d2bb4125a22eba3c984640c099a7096 (patch) | |
tree | d1468ce96ea2cb67fa7825027a3f93a67bf4d9a6 /src/groupdef.h | |
parent | 88c84f0affadf69d1813d1a971692a5097f8870a (diff) | |
download | Doxygen-d1e917df5d2bb4125a22eba3c984640c099a7096.zip Doxygen-d1e917df5d2bb4125a22eba3c984640c099a7096.tar.gz Doxygen-d1e917df5d2bb4125a22eba3c984640c099a7096.tar.bz2 |
Release-1.2.13-20020210
Diffstat (limited to 'src/groupdef.h')
-rw-r--r-- | src/groupdef.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/groupdef.h b/src/groupdef.h index a7d81d5..f371d49 100644 --- a/src/groupdef.h +++ b/src/groupdef.h @@ -118,7 +118,7 @@ class GroupDef : public Definition ClassSDict *classSDict; // list of classes in the group NamespaceList *namespaceList; // list of namespaces in the group GroupList *groupList; // list of sub groups. - GroupList *parentGroupList; // list of parent groups. + //GroupList *parentGroupList; // list of parent groups. PageSDict *pageDict; // list of pages in the group PageSDict *exampleDict; // list of examples in the group @@ -139,6 +139,13 @@ class GroupList : public QList<GroupDef> { }; +class GroupListIterator : public QListIterator<GroupDef> +{ + public: + GroupListIterator(const GroupList &l) : QListIterator<GroupDef>(l) {} + virtual ~GroupListIterator() {} +}; + void addClassToGroups(Entry *root,ClassDef *cd); void addNamespaceToGroups(Entry *root,NamespaceDef *nd); void addGroupToGroups(Entry *root,GroupDef *subGroup); |