From: Yurii R. <yr...@us...> - 2003-01-28 06:44:35
|
Update of /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/include In directory sc8-pr-cvs1:/tmp/cvs-serv8015/libs/libsxmlstream/include Modified Files: sxmlstream.hxx Log Message: SAL_UNX moved to config.h.top; GLIB 1.2.0 is now required; libsxmlstream got output for binary stream Index: sxmlstream.hxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/include/sxmlstream.hxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- sxmlstream.hxx 28 Jan 2003 04:16:24 -0000 1.5 +++ sxmlstream.hxx 28 Jan 2003 06:44:32 -0000 1.6 @@ -50,9 +50,9 @@ friend ostream& operator<<(ostream&, SXmlBinaryStream&); -/* friend SXmlBinaryStream& operator>>( - SXmlBinaryStream&, - const ostream&);*/ + friend SXmlBinaryStream& operator<<(SXmlBinaryStream&, + const ostream&); + }; class SXmlTextStream: public SXmlStream @@ -63,6 +63,9 @@ friend ostream& operator<<(ostream&, SXmlTextStream&); + + friend SXmlTextStream& operator<<(SXmlTextStream&, + const ostream&); }; |