You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tn...@apache.org on 2001/06/23 16:13:17 UTC

cvs commit: xml-xerces/c/src/parsers DOMParser.hpp IDOMParser.hpp SAXParser.hpp

tng         01/06/23 07:13:17

  Modified:    c/src/parsers DOMParser.hpp IDOMParser.hpp SAXParser.hpp
  Log:
  Remove getScanner from the Parser headers as this is not needed and Scanner is not internal class.
  
  Revision  Changes    Path
  1.24      +1 -15     xml-xerces/c/src/parsers/DOMParser.hpp
  
  Index: DOMParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/parsers/DOMParser.hpp,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- DOMParser.hpp	2001/06/03 19:26:18	1.23
  +++ DOMParser.hpp	2001/06/23 14:13:16	1.24
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: DOMParser.hpp,v 1.23 2001/06/03 19:26:18 jberry Exp $
  + * $Id: DOMParser.hpp,v 1.24 2001/06/23 14:13:16 tng Exp $
    *
    */
   
  @@ -195,15 +195,6 @@
         */
       const EntityResolver* getEntityResolver() const;
   
  -    /** Get a const reference to the underlying scanner
  -      *
  -      * This method returns a reference to the underlying scanner object.
  -      * It allows read only access to data maintained in the scanner.
  -      *
  -      * @return A const reference to the underlying scanner object.
  -      */
  -    const XMLScanner& getScanner() const;
  -
       /** Get a const reference to the validator
         *
         * This method returns a reference to the parser's installed
  @@ -1407,11 +1398,6 @@
   inline bool DOMParser::getIncludeIgnorableWhitespace() const
   {
       return fIncludeIgnorableWhitespace;
  -}
  -
  -inline const XMLScanner& DOMParser::getScanner() const
  -{
  -    return *fScanner;
   }
   
   inline bool DOMParser::getToCreateXMLDeclTypeNode() const
  
  
  
  1.4       +1 -15     xml-xerces/c/src/parsers/IDOMParser.hpp
  
  Index: IDOMParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/parsers/IDOMParser.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- IDOMParser.hpp	2001/06/08 21:26:05	1.3
  +++ IDOMParser.hpp	2001/06/23 14:13:16	1.4
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: IDOMParser.hpp,v 1.3 2001/06/08 21:26:05 tng Exp $
  + * $Id: IDOMParser.hpp,v 1.4 2001/06/23 14:13:16 tng Exp $
    *
    */
   
  @@ -197,15 +197,6 @@
         */
       const EntityResolver* getEntityResolver() const;
   
  -    /** Get a const reference to the underlying scanner
  -      *
  -      * This method returns a reference to the underlying scanner object.
  -      * It allows read only access to data maintained in the scanner.
  -      *
  -      * @return A const reference to the underlying scanner object.
  -      */
  -    const XMLScanner& getScanner() const;
  -
       /** Get a const reference to the validator
         *
         * This method returns a reference to the parser's installed
  @@ -1376,11 +1367,6 @@
   inline bool IDOMParser::getIncludeIgnorableWhitespace() const
   {
       return fIncludeIgnorableWhitespace;
  -}
  -
  -inline const XMLScanner& IDOMParser::getScanner() const
  -{
  -    return *fScanner;
   }
   
   
  
  
  
  1.17      +3 -13     xml-xerces/c/src/parsers/SAXParser.hpp
  
  Index: SAXParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/parsers/SAXParser.hpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- SAXParser.hpp	2001/06/03 19:26:20	1.16
  +++ SAXParser.hpp	2001/06/23 14:13:16	1.17
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAXParser.hpp,v $
  + * Revision 1.17  2001/06/23 14:13:16  tng
  + * Remove getScanner from the Parser headers as this is not needed and Scanner is not internal class.
  + *
    * Revision 1.16  2001/06/03 19:26:20  jberry
    * Add support for querying error count following parse; enables simple parse without requiring error handler.
    *
  @@ -238,14 +241,6 @@
       const ErrorHandler* getErrorHandler() const;
   
       /**
  -      * This method returns a reference to the underlying scanner object.
  -      * It allows read only access to data maintained in the scanner.
  -      *
  -      * @return A const reference to the underlying scanner object.
  -      */
  -    const XMLScanner& getScanner() const;
  -
  -    /**
         * This method returns a reference to the parser's installed
         * validator.
         *
  @@ -1471,11 +1466,6 @@
   inline const ErrorHandler* SAXParser::getErrorHandler() const
   {
       return fErrorHandler;
  -}
  -
  -inline const XMLScanner& SAXParser::getScanner() const
  -{
  -    return *fScanner;
   }
   
   #endif
  
  
  

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