summaryrefslogtreecommitdiffstats
path: root/src/membergroup.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-02-11 18:36:01 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-02-17 11:39:58 (GMT)
commitaf363c50c64268f473aa5b595a0379f8590c4759 (patch)
tree8008a6e8bc0779ed346153149d47cdcf24f8c09d /src/membergroup.cpp
parent9a05fda1c0aef229252d133987f866e0f6718eb0 (diff)
downloadDoxygen-af363c50c64268f473aa5b595a0379f8590c4759.zip
Doxygen-af363c50c64268f473aa5b595a0379f8590c4759.tar.gz
Doxygen-af363c50c64268f473aa5b595a0379f8590c4759.tar.bz2
Remove persistent storage of Entry objects
Diffstat (limited to 'src/membergroup.cpp')
-rw-r--r--src/membergroup.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/membergroup.cpp b/src/membergroup.cpp
index 5ee47ab..3e8fea9 100644
--- a/src/membergroup.cpp
+++ b/src/membergroup.cpp
@@ -26,7 +26,6 @@
#include "groupdef.h"
#include "doxygen.h"
#include "docparser.h"
-#include "marshal.h"
#include "entry.h"
#include "md5.h"
@@ -349,40 +348,6 @@ void MemberGroup::findSectionsInDocumentation()
memberList->findSectionsInDocumentation();
}
-void MemberGroup::marshal(StorageIntf *s)
-{
- marshalMemberList(s,memberList);
- marshalObjPointer(s,inDeclSection); // reference only
- marshalInt(s,grpId);
- marshalQCString(s,grpHeader);
- marshalQCString(s,fileName);
- marshalObjPointer(s,scope);
- marshalQCString(s,doc);
- marshalBool(s,inSameSection);
- marshalInt(s,m_numDecMembers);
- marshalInt(s,m_numDocMembers);
- marshalObjPointer(s,m_parent);
- marshalQCString(s,m_docFile);
- marshalItemInfoList (Doxygen::symbolStorage,m_xrefListItems);
-}
-
-void MemberGroup::unmarshal(StorageIntf *s)
-{
- memberList = unmarshalMemberList(s);
- inDeclSection = (MemberList *)unmarshalObjPointer(s);
- grpId = unmarshalInt(s);
- grpHeader = unmarshalQCString(s);
- fileName = unmarshalQCString(s);
- scope = (Definition *)unmarshalObjPointer(s);
- doc = unmarshalQCString(s);
- inSameSection = unmarshalBool(s);
- m_numDecMembers = unmarshalInt(s);
- m_numDocMembers = unmarshalInt(s);
- m_parent = (Definition *)unmarshalObjPointer(s);
- m_docFile = unmarshalQCString(s);
- m_xrefListItems = unmarshalItemInfoList (Doxygen::symbolStorage);
-}
-
void MemberGroup::setRefItems(const QList<ListItemInfo> *sli)
{
if (sli)