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/01/16 03:38:37 UTC

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

dbertoni    01/01/15 18:38:37

  Modified:    c/src/XSLT XSLTInit.cpp XSLTInit.hpp
  Log:
  New dependency on XalanSourceTree.
  
  Revision  Changes    Path
  1.3       +1 -0      xml-xalan/c/src/XSLT/XSLTInit.cpp
  
  Index: XSLTInit.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTInit.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XSLTInit.cpp	2000/09/05 02:24:54	1.2
  +++ XSLTInit.cpp	2001/01/16 02:38:37	1.3
  @@ -74,6 +74,7 @@
   	m_platformSupportInit(),
   	m_domSupportInit(),
   	m_xmlSupportInit(),
  +	m_xalanSourceTreeInit(),
   	m_xpathInit()
   {
   	++s_initCounter;
  
  
  
  1.2       +7 -1      xml-xalan/c/src/XSLT/XSLTInit.hpp
  
  Index: XSLTInit.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTInit.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSLTInit.hpp	2000/08/31 19:43:12	1.1
  +++ XSLTInit.hpp	2001/01/16 02:38:37	1.2
  @@ -77,6 +77,10 @@
   
   
   
  +#include <XalanSourceTree/XalanSourceTreeInit.hpp>
  +
  +
  +
   #include <XPath/XPathInit.hpp>
   
   
  @@ -111,9 +115,11 @@
   
   	const XMLSupportInit		m_xmlSupportInit;
   
  +	const XalanSourceTreeInit	m_xalanSourceTreeInit;
  +
   	const XPathInit				m_xpathInit;
   
  -	static unsigned long	s_initCounter;
  +	static unsigned long		s_initCounter;
   };