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 2002/11/26 17:50:53 UTC

cvs commit: xml-xalan/c/src/XSLT XSLTInputSource.cpp XSLTInputSource.hpp

dbertoni    2002/11/26 08:50:53

  Modified:    c/src/XSLT XSLTInputSource.cpp XSLTInputSource.hpp
  Log:
  Added new constructor.
  
  Revision  Changes    Path
  1.18      +9 -0      xml-xalan/c/src/XSLT/XSLTInputSource.cpp
  
  Index: XSLTInputSource.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTInputSource.cpp,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- XSLTInputSource.cpp	25 Nov 2002 18:11:53 -0000	1.17
  +++ XSLTInputSource.cpp	26 Nov 2002 16:50:53 -0000	1.18
  @@ -225,6 +225,15 @@
   
   
   
  +XSLTInputSource::XSLTInputSource(StreamType&	stream) :
  +	InputSource(),
  +	m_stream(&stream),
  +	m_node(0)
  +{
  +}
  +
  +
  +
   BinInputStreamType*
   XSLTInputSource::makeStream() const
   {
  
  
  
  1.17      +11 -0     xml-xalan/c/src/XSLT/XSLTInputSource.hpp
  
  Index: XSLTInputSource.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTInputSource.hpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- XSLTInputSource.hpp	25 Nov 2002 18:11:53 -0000	1.16
  +++ XSLTInputSource.hpp	26 Nov 2002 16:50:53 -0000	1.17
  @@ -193,6 +193,17 @@
   	XSLTInputSource(StreamType*		stream);
   
   	/**
  +	 * Create a new input source with std stream.
  +	 *
  +	 * <p>Application writers may use setSystemId() to provide a base for
  +	 * resolving relative URIs, and setPublicId to include a public
  +	 * identifier.</p>
  +	 *
  +	 * @param stream the input stream...
  +	 */
  +	XSLTInputSource(StreamType&		stream);
  +
  +	/**
   	 * Makes the byte stream for this input source.
   	 *
   	 * <p>The SAX parser will ignore this if there is also a character
  
  
  

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