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/04/07 16:14:08 UTC

cvs commit: xml-xerces/c/src/xercesc/internal DGXMLScanner.hpp IGXMLScanner.hpp SGXMLScanner.hpp WFXMLScanner.hpp

peiyongz    2004/04/07 07:14:08

  Modified:    c/src/xercesc/internal DGXMLScanner.hpp IGXMLScanner.hpp
                        SGXMLScanner.hpp WFXMLScanner.hpp
  Log:
  make resolveSystemId virutal
  
  Revision  Changes    Path
  1.13      +5 -1      xml-xerces/c/src/xercesc/internal/DGXMLScanner.hpp
  
  Index: DGXMLScanner.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/DGXMLScanner.hpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- DGXMLScanner.hpp	29 Jan 2004 11:46:30 -0000	1.12
  +++ DGXMLScanner.hpp	7 Apr 2004 14:14:08 -0000	1.13
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.13  2004/04/07 14:14:08  peiyongz
  + * make resolveSystemId virutal
  + *
    * Revision 1.12  2004/01/29 11:46:30  cargilld
    * Code cleanup changes to get rid of various compiler diagnostic messages.
    *
  @@ -184,13 +187,14 @@
       virtual void scanDocTypeDecl();
       virtual void scanReset(const InputSource& src);
       virtual void sendCharData(XMLBuffer& toSend);
  +    virtual InputSource* resolveSystemId(const XMLCh* const sysId); 
   
       // -----------------------------------------------------------------------
       //  Private helper methods
       // -----------------------------------------------------------------------
       void commonInit();
       void cleanUp();
  -    InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
  +
       unsigned int buildAttList
       (
           const unsigned int                attCount
  
  
  
  1.19      +4 -1      xml-xerces/c/src/xercesc/internal/IGXMLScanner.hpp
  
  Index: IGXMLScanner.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/IGXMLScanner.hpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- IGXMLScanner.hpp	29 Jan 2004 11:46:30 -0000	1.18
  +++ IGXMLScanner.hpp	7 Apr 2004 14:14:08 -0000	1.19
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.19  2004/04/07 14:14:08  peiyongz
  + * make resolveSystemId virutal
  + *
    * Revision 1.18  2004/01/29 11:46:30  cargilld
    * Code cleanup changes to get rid of various compiler diagnostic messages.
    *
  @@ -217,13 +220,13 @@
       virtual void scanDocTypeDecl();
       virtual void scanReset(const InputSource& src);
       virtual void sendCharData(XMLBuffer& toSend);
  +    virtual InputSource* resolveSystemId(const XMLCh* const sysId);
   
       // -----------------------------------------------------------------------
       //  Private helper methods
       // -----------------------------------------------------------------------
       void commonInit();
       void cleanUp();
  -    InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
   
       // Spaces are not allowed in URI, so %20 is used instead.
       // Convert %20 to spaces before resolving the URI
  
  
  
  1.17      +4 -1      xml-xerces/c/src/xercesc/internal/SGXMLScanner.hpp
  
  Index: SGXMLScanner.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/SGXMLScanner.hpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- SGXMLScanner.hpp	29 Jan 2004 11:46:30 -0000	1.16
  +++ SGXMLScanner.hpp	7 Apr 2004 14:14:08 -0000	1.17
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.17  2004/04/07 14:14:08  peiyongz
  + * make resolveSystemId virutal
  + *
    * Revision 1.16  2004/01/29 11:46:30  cargilld
    * Code cleanup changes to get rid of various compiler diagnostic messages.
    *
  @@ -207,13 +210,13 @@
       virtual void scanDocTypeDecl();
       virtual void scanReset(const InputSource& src);
       virtual void sendCharData(XMLBuffer& toSend);
  +    virtual InputSource* resolveSystemId(const XMLCh* const sysId);
   
       // -----------------------------------------------------------------------
       //  Private helper methods
       // -----------------------------------------------------------------------
       void commonInit();
       void cleanUp();
  -    InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
   
       // Spaces are not allowed in URI, so %20 is used instead.
       // Convert %20 to spaces before resolving the URI
  
  
  
  1.10      +4 -0      xml-xerces/c/src/xercesc/internal/WFXMLScanner.hpp
  
  Index: WFXMLScanner.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/WFXMLScanner.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- WFXMLScanner.hpp	29 Jan 2004 11:46:30 -0000	1.9
  +++ WFXMLScanner.hpp	7 Apr 2004 14:14:08 -0000	1.10
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.10  2004/04/07 14:14:08  peiyongz
  + * make resolveSystemId virutal
  + *
    * Revision 1.9  2004/01/29 11:46:30  cargilld
    * Code cleanup changes to get rid of various compiler diagnostic messages.
    *
  @@ -172,6 +175,7 @@
       virtual void scanDocTypeDecl();
       virtual void scanReset(const InputSource& src);
       virtual void sendCharData(XMLBuffer& toSend);
  +    virtual InputSource* resolveSystemId(const XMLCh* const sysId);
   
       // -----------------------------------------------------------------------
       //  Private helper methods
  
  
  

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