peiyongz 2004/10/28 13:10:50 Modified: c/src/xercesc/framework XMLNotationDecl.hpp XMLNotationDecl.cpp Log: Data member reshuffle and store/load fNameScopeId Revision Changes Path 1.14 +4 -1 xml-xerces/c/src/xercesc/framework/XMLNotationDecl.hpp Index: XMLNotationDecl.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/XMLNotationDecl.hpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- XMLNotationDecl.hpp 8 Sep 2004 13:55:59 -0000 1.13 +++ XMLNotationDecl.hpp 28 Oct 2004 20:10:50 -0000 1.14 @@ -16,6 +16,9 @@ /* * $Log$ + * Revision 1.14 2004/10/28 20:10:50 peiyongz + * Data member reshuffle and store/load fNameScopeId + * * Revision 1.13 2004/09/08 13:55:59 peiyongz * Apache License Version 2.0 * @@ -193,11 +196,11 @@ // The text of the notation's base URI // ----------------------------------------------------------------------- unsigned int fId; + unsigned int fNameSpaceId; XMLCh* fName; XMLCh* fPublicId; XMLCh* fSystemId; XMLCh* fBaseURI; - unsigned int fNameSpaceId; MemoryManager* fMemoryManager; }; 1.12 +7 -2 xml-xerces/c/src/xercesc/framework/XMLNotationDecl.cpp Index: XMLNotationDecl.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/XMLNotationDecl.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- XMLNotationDecl.cpp 8 Sep 2004 13:55:59 -0000 1.11 +++ XMLNotationDecl.cpp 28 Oct 2004 20:10:50 -0000 1.12 @@ -16,6 +16,9 @@ /** * $Log$ + * Revision 1.12 2004/10/28 20:10:50 peiyongz + * Data member reshuffle and store/load fNameScopeId + * * Revision 1.11 2004/09/08 13:55:59 peiyongz * Apache License Version 2.0 * @@ -77,11 +80,11 @@ XMLNotationDecl::XMLNotationDecl(MemoryManager* const manager) : fId(0) + , fNameSpaceId(0) , fName(0) , fPublicId(0) , fSystemId(0) , fBaseURI(0) - , fNameSpaceId(0) , fMemoryManager(manager) { } @@ -92,11 +95,11 @@ , const XMLCh* const baseURI , MemoryManager* const manager) : fId(0) + , fNameSpaceId(0) , fName(0) , fPublicId(0) , fSystemId(0) , fBaseURI(0) - , fNameSpaceId(0) , fMemoryManager(manager) { try @@ -158,6 +161,7 @@ if (serEng.isStoring()) { serEng<<fId; + serEng<<fNameSpaceId; serEng.writeString(fName); serEng.writeString(fPublicId); serEng.writeString(fSystemId); @@ -166,6 +170,7 @@ else { serEng>>fId; + serEng>>fNameSpaceId; serEng.readString(fName); serEng.readString(fPublicId); serEng.readString(fSystemId);
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]