auriemma 00/09/28 14:55:20
Modified: c/src/XSLT XalanTemplate.cpp
Log:
More AIX template instantiations.
Revision Changes Path
1.4 +4 -3 xml-xalan/c/src/XSLT/XalanTemplate.cpp
Index: XalanTemplate.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/XalanTemplate.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- XalanTemplate.cpp 2000/09/28 13:12:34 1.3
+++ XalanTemplate.cpp 2000/09/28 21:55:19 1.4
@@ -102,7 +102,7 @@
#include <PlatformSupport/AttributeListImpl.hpp>
#include <PlatformSupport/DOMStringHelper.hpp>
#include <PlatformSupport/PrintWriter.hpp>
-#include <PlatformSupport/TextOutputStream.hpp>
+#include <PlatformSupport/XalanOutputStream.hpp>
#include <PlatformSupport/XalanUnicode.hpp>
@@ -169,6 +169,7 @@
static string theString;
static vector<DOMString> theDOMStringVector;
static vector<char> theCharVector;
+static vector<unsigned char> theUnsignedCharVector;
static AttributeListImpl::AttributeVectorType theAttributeVectorEntryVector;
static AttributeListImpl::AttributeKeyMapType theAttributeVectorEntryMap;
static allocator<DOMString> theAllocator;
@@ -440,11 +441,11 @@
}
{
- StylesheetExecutionContextDefault::TextOutputStreamSetType
theSet;
+ StylesheetExecutionContextDefault::OutputStreamSetType theSet;
for_each(theSet.begin(),
theSet.end(),
- DeleteFunctor<TextOutputStream>());
+ DeleteFunctor<XalanOutputStream>());
}
{