You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2004/03/02 00:18:29 UTC

cvs commit: xml-xerces/c/src/xercesc/internal XMLGrammarPoolImpl.cpp

peiyongz    2004/03/01 15:18:28

  Modified:    c/src/xercesc/internal XMLGrammarPoolImpl.cpp
  Log:
  Instantiate XSerializeEngine with GrammarPool
  
  Revision  Changes    Path
  1.19      +6 -3      xml-xerces/c/src/xercesc/internal/XMLGrammarPoolImpl.cpp
  
  Index: XMLGrammarPoolImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XMLGrammarPoolImpl.cpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- XMLGrammarPoolImpl.cpp	29 Jan 2004 11:46:30 -0000	1.18
  +++ XMLGrammarPoolImpl.cpp	1 Mar 2004 23:18:28 -0000	1.19
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.19  2004/03/01 23:18:28  peiyongz
  + * Instantiate XSerializeEngine with GrammarPool
  + *
    * Revision 1.18  2004/01/29 11:46:30  cargilld
    * Code cleanup changes to get rid of various compiler diagnostic messages.
    *
  @@ -357,7 +360,7 @@
           ThrowXMLwithMemMgr(XSerializationException, XMLExcepts::XSer_GrammarPool_Empty, getMemoryManager());
       }
           
  -    XSerializeEngine  serEng(binOut, getMemoryManager());
  +    XSerializeEngine  serEng(binOut, this);
   
       //version information
       serEng<<gXercesMajVersion;
  @@ -411,7 +414,7 @@
       
       try 
       {
  -        XSerializeEngine  serEng(binIn, memMgr);
  +        XSerializeEngine  serEng(binIn, this);
   
           //version information
           unsigned int  MajVer;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org