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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to