You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/05/10 19:52:54 UTC

cvs commit: xml-xalan/c/src/XalanSourceTree XalanSourceTreeParserLiaison.cpp XalanSourceTreeParserLiaison.hpp

dbertoni    01/05/10 10:52:53

  Modified:    c/src/XalanSourceTree XalanSourceTreeParserLiaison.cpp
                        XalanSourceTreeParserLiaison.hpp
  Log:
  Moved getEntityResolver() into XMLParserLiaison.
  
  Revision  Changes    Path
  1.12      +0 -8      xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.cpp
  
  Index: XalanSourceTreeParserLiaison.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- XalanSourceTreeParserLiaison.cpp	2001/04/30 18:08:33	1.11
  +++ XalanSourceTreeParserLiaison.cpp	2001/05/10 17:52:49	1.12
  @@ -402,14 +402,6 @@
   
   
   
  -const EntityResolver*
  -XalanSourceTreeParserLiaison::getEntityResolver() const
  -{
  -	return m_xercesParserLiaison.getEntityResolver();
  -}
  -
  -
  -
   void
   XalanSourceTreeParserLiaison::setEntityResolver(EntityResolver*	resolver)
   {
  
  
  
  1.8       +6 -32     xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.hpp
  
  Index: XalanSourceTreeParserLiaison.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XalanSourceTreeParserLiaison.hpp	2001/04/27 19:20:49	1.7
  +++ XalanSourceTreeParserLiaison.hpp	2001/05/10 17:52:50	1.8
  @@ -180,7 +180,13 @@
   	virtual const XalanDOMString
   	getParserDescription() const;
   
  +	virtual EntityResolver*
  +	getEntityResolver();
   
  +	virtual void
  +	setEntityResolver(EntityResolver*	resolver);
  +
  +
   	// These interfaces are new to XalanSourceTreeParserLiaison...
   
   	/**
  @@ -326,38 +332,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);
   
   	/** 
   	 * Map a pointer to a XalanDocument instance to its implementation
  
  
  

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