dbertoni 01/03/02 13:02:55
Modified: c/src/XalanTransformer XalanTransformer.cpp
XalanTransformer.hpp
Log:
Use new XPathFactory for stylesheets.
Revision Changes Path
1.9 +2 -1 xml-xalan/c/src/XalanTransformer/XalanTransformer.cpp
Index: XalanTransformer.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XalanTransformer/XalanTransformer.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- XalanTransformer.cpp 2001/02/14 18:51:24 1.8
+++ XalanTransformer.cpp 2001/03/02 21:02:51 1.9
@@ -86,10 +86,11 @@
m_domSupport,
m_xobjectFactory,
m_xpathFactory),
+ m_stylesheetXPathFactory(),
m_stylesheetConstructionContext(
m_processor,
m_xsltprocessorEnvSupport,
- m_xpathFactory),
+ m_stylesheetXPathFactory),
m_stylesheetExecutionContext(
m_processor,
m_xsltprocessorEnvSupport,
1.11 +4 -1 xml-xalan/c/src/XalanTransformer/XalanTransformer.hpp
Index: XalanTransformer.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XalanTransformer/XalanTransformer.hpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- XalanTransformer.hpp 2001/02/14 18:51:24 1.10
+++ XalanTransformer.hpp 2001/03/02 21:02:53 1.11
@@ -69,6 +69,7 @@
#include <XPath/XObjectFactoryDefault.hpp>
+#include <XPath/XPathFactoryBlock.hpp>
#include <XPath/XPathFactoryDefault.hpp>
@@ -303,8 +304,10 @@
XSLTEngineImpl
m_processor;
+ XPathFactoryBlock
m_stylesheetXPathFactory;
+
StylesheetConstructionContextDefault m_stylesheetConstructionContext;
-
+
StylesheetExecutionContextDefault
m_stylesheetExecutionContext;
CharVectorType
m_errorMessage;