dbertoni 2003/07/15 11:29:49
Modified: c/src/xalanc/XSLT XSLTResultTarget.cpp
Log:
Added missing constructor.
Revision Changes Path
1.3 +14 -1 xml-xalan/c/src/xalanc/XSLT/XSLTResultTarget.cpp
Index: XSLTResultTarget.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/xalanc/XSLT/XSLTResultTarget.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- XSLTResultTarget.cpp 15 Jul 2003 07:04:27 -0000 1.2
+++ XSLTResultTarget.cpp 15 Jul 2003 18:29:48 -0000 1.3
@@ -163,7 +163,20 @@
-XSLTResultTarget::XSLTResultTarget(FormatterListener&
flistener) :
+XSLTResultTarget::XSLTResultTarget(FILE* stream) :
+ m_fileName(),
+ m_byteStream(0),
+ m_encoding(),
+ m_characterStream(0),
+ m_formatterListener(0),
+ m_stream(stream)
+{
+ assert(stream != 0);
+}
+
+
+
+XSLTResultTarget::XSLTResultTarget(FormatterListener& flistener) :
m_fileName(),
m_byteStream(0),
m_encoding(),
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]