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/08/06 03:43:18 UTC

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

dbertoni    01/08/05 18:43:18

  Modified:    c/src/XSLT Stylesheet.cpp Stylesheet.hpp
  Log:
  Added new virtual function.
  
  Revision  Changes    Path
  1.61      +12 -1     xml-xalan/c/src/XSLT/Stylesheet.cpp
  
  Index: Stylesheet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.cpp,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- Stylesheet.cpp	2001/07/12 05:05:58	1.60
  +++ Stylesheet.cpp	2001/08/06 01:43:18	1.61
  @@ -1830,10 +1830,21 @@
   bool
   Stylesheet::isIndexed() const
   {
  -	//should not be called
  +	// This member functionshould not be called
   	assert(false);	
   
   	return false;
  +}
  +
  +
  +
  +unsigned long
  +Stylesheet::getNumber() const
  +{
  +	// This member functionshould not be called
  +	assert(false);	
  +
  +	return 0;
   }
   
   
  
  
  
  1.39      +3 -0      xml-xalan/c/src/XSLT/Stylesheet.hpp
  
  Index: Stylesheet.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.hpp,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- Stylesheet.hpp	2001/06/29 18:53:19	1.38
  +++ Stylesheet.hpp	2001/08/06 01:43:18	1.39
  @@ -1095,6 +1095,9 @@
   	virtual XalanElement*
   	getElementById(const XalanDOMString&	elementId) const;
   
  +	virtual unsigned long
  +	getNumber() const;
  +
   	virtual bool
   	isIndexed() const;
   
  
  
  

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