auriemma 01/04/10 07:51:50
Modified: c/src/XalanTransformer XalanTransformer.hpp
Log:
Added support for parameters.
Revision Changes Path
1.16 +6 -0 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.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- XalanTransformer.hpp 2001/04/01 03:49:30 1.15
+++ XalanTransformer.hpp 2001/04/10 14:51:49 1.16
@@ -354,9 +354,13 @@
#if defined(XALAN_NO_NAMESPACES)
typedef vector<const XalanCompiledStylesheet*>
CompiledStylesheetPtrVectorType;
typedef vector<const XalanParsedSource*>
ParsedSourcePtrVectorType;
+ typedef pair<XalanDOMString, XalanDOMString> ParamPairType;
+ typedef vector<ParamPairType>
ParamPairVectorType;
#else
typedef std::vector<const XalanCompiledStylesheet*>
CompiledStylesheetPtrVectorType;
typedef std::vector<const XalanParsedSource*>
ParsedSourcePtrVectorType;
+ typedef std::pair<XalanDOMString, XalanDOMString> ParamPairType;
+ typedef std::vector<ParamPairType>
ParamPairVectorType;
#endif
protected:
@@ -371,6 +375,8 @@
CompiledStylesheetPtrVectorType m_compiledStylesheets;
ParsedSourcePtrVectorType m_parsedSources;
+
+ ParamPairVectorType m_paramPairs;
CharVectorType
m_errorMessage;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]