Skip to content
Snippets Groups Projects
Commit aa00e054 authored by PeiYong Zhang's avatar PeiYong Zhang
Browse files

Do not serialize/deserialize fElemNonDeclPool

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175377 13f79535-47bb-0310-9956-ffa450edef68
parent a08419d8
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,9 @@
/*
* $Log$
* Revision 1.13 2003/11/12 20:32:47 peiyongz
* Do not serialize/deserialize fElemNonDeclPool
*
* Revision 1.12 2003/11/06 15:03:45 peiyongz
* initialize data member
*
......@@ -326,12 +329,10 @@ void DTDGrammar::serialize(XSerializeEngine& serEng)
/***
*
* Serialize NameIdPool<DTDElementDecl>* fElemDeclPool;
* Serialize NameIdPool<DTDElementDecl>* fElemNonDeclPool;
* Serialize NameIdPool<DTDEntityDecl>* fEntityDeclPool;
* Serialize NameIdPool<XMLNotationDecl>* fNotationDeclPool;
***/
XTemplateSerializer::storeObject(fElemDeclPool, serEng);
XTemplateSerializer::storeObject(fElemNonDeclPool, serEng); //TODO: to be removed
XTemplateSerializer::storeObject(fEntityDeclPool, serEng);
XTemplateSerializer::storeObject(fNotationDeclPool, serEng);
......@@ -346,12 +347,11 @@ void DTDGrammar::serialize(XSerializeEngine& serEng)
/***
*
* Deserialize NameIdPool<DTDElementDecl>* fElemDeclPool;
* Deserialize NameIdPool<DTDElementDecl>* fElemNonDeclPool;
* Deserialize NameIdPool<DTDEntityDecl>* fEntityDeclPool;
* Deerialize NameIdPool<XMLNotationDecl>* fNotationDeclPool;
***/
XTemplateSerializer::loadObject(&fElemDeclPool, 109, 128, serEng);
XTemplateSerializer::loadObject(&fElemNonDeclPool, 109, 128, serEng); //TODO: to be removed
fElemNonDeclPool = 0;
XTemplateSerializer::loadObject(&fEntityDeclPool, 109, 128, serEng);
XTemplateSerializer::loadObject(&fNotationDeclPool, 109, 128, serEng);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment