dbertoni    01/05/10 10:54:01

  Modified:    c/src/XercesParserLiaison XercesParserLiaison.cpp
                        XercesParserLiaison.hpp
  Log:
  Moved getEntityResolver() into XMLParserLiaison.
  
  Revision  Changes    Path
  1.31      +0 -8      
xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.cpp
  
  Index: XercesParserLiaison.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.cpp,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- XercesParserLiaison.cpp   2001/04/30 18:09:03     1.30
  +++ XercesParserLiaison.cpp   2001/05/10 17:53:56     1.31
  @@ -410,14 +410,6 @@
   
   
   
  -const EntityResolver*
  -XercesParserLiaison::getEntityResolver() const
  -{
  -     return m_entityResolver;
  -}
  -
  -
  -
   void
   XercesParserLiaison::setEntityResolver(EntityResolver*       resolver)
   {
  
  
  
  1.22      +6 -32     
xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.hpp
  
  Index: XercesParserLiaison.hpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.hpp,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- XercesParserLiaison.hpp   2001/02/03 00:06:58     1.21
  +++ XercesParserLiaison.hpp   2001/05/10 17:53:57     1.22
  @@ -168,7 +168,13 @@
        virtual const XalanDOMString
        getParserDescription() const;
   
  +     virtual EntityResolver*
  +     getEntityResolver();
   
  +     virtual void
  +     setEntityResolver(EntityResolver*       resolver);
  +
  +
        // These interfaces are new to XercesParserLiaison...
   
        /** Get the 'include ignorable whitespace' flag.
  @@ -297,38 +303,6 @@
          */
        virtual void
        setExitOnFirstFatalError(bool   newState);
  -
  -     /**
  -       * This method returns the installed entity resolver. Suitable
  -       * for 'lvalue' usages.
  -       *
  -       * @return The pointer to the installed entity resolver object.
  -       */
  -     virtual EntityResolver*
  -     getEntityResolver();
  -
  -     /**
  -       * This method returns the installed entity resolver. Suitable
  -       * for 'rvalue' usages.
  -       *
  -       * @return A const pointer to the installed entity resolver object.
  -       */
  -     virtual const EntityResolver*
  -     getEntityResolver() const;
  -
  -     /**
  -       * This method installs the user specified entity resolver on the
  -       * parser. It allows applications to trap and redirect calls to
  -       * external entities.
  -       *
  -       * @param handler A pointer to the entity resolver to be called
  -       *                        when the parser comes across references to
  -       *                        entities in the XML file.
  -       *
  -       * @see Parser#setEntityResolver
  -       */
  -     virtual void
  -     setEntityResolver(EntityResolver*       resolver);
   
        /**
         * Create a XalanDocument proxy for an existing Xerces document.
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to