diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-09-10 20:49:41 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-09-10 20:49:41 (GMT) |
commit | c844985adde0459f1f01ed00d0a289591fbcd2af (patch) | |
tree | fe67587a09765b41e54254d65f53b6c9352816e9 /src/membergroup.h | |
parent | cde82403ec8974fb86de34828b41bf9547587b6e (diff) | |
download | Doxygen-c844985adde0459f1f01ed00d0a289591fbcd2af.zip Doxygen-c844985adde0459f1f01ed00d0a289591fbcd2af.tar.gz Doxygen-c844985adde0459f1f01ed00d0a289591fbcd2af.tar.bz2 |
Release-1.4.7-20060910
Diffstat (limited to 'src/membergroup.h')
-rw-r--r-- | src/membergroup.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/membergroup.h b/src/membergroup.h index 9c72fd6..885341a 100644 --- a/src/membergroup.h +++ b/src/membergroup.h @@ -20,6 +20,7 @@ #include "qtbc.h" #include <qlist.h> +#include <qfile.h> #include "sortdict.h" #define DOX_NOGROUP -1 @@ -32,10 +33,12 @@ class MemberList; class GroupDef; class OutputList; class Definition; +class StorageIntf; class MemberGroup { public: + MemberGroup(); MemberGroup(Definition *parent,int id,const char *header, const char *docs,const char *docFile); ~MemberGroup(); @@ -74,14 +77,17 @@ class MemberGroup MemberList *members() const { return memberList; } Definition *parent() const { return m_parent; } + void marshal(StorageIntf *s); + void unmarshal(StorageIntf *s); + private: MemberList *memberList; // list of all members in the group + MemberList *inDeclSection; int grpId; QCString grpHeader; QCString fileName; // base name of the generated file Definition *scope; QCString doc; - MemberList *inDeclSection; bool inSameSection; int m_numDecMembers; int m_numDocMembers; |