Update of /cvsroot/pclasses/pclasses2/src/Unicode
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1650/src/Unicode
Modified Files:
Makefile.am
Removed Files:
TextStream.cpp
Log Message:
- Added StreamBuffer, StreamBase - std::streams are not suitable for our needs
- Added IODeviceStreamBuffer - buffers Streams and writes them to an IODevice
- Added DataStream - portable data streaming
- Added TextStream - unicode text streaming with on the fly codepage conversion
Index: Makefile.am
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/src/Unicode/Makefile.am,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- Makefile.am 3 Jul 2005 23:46:29 -0000 1.12
+++ Makefile.am 4 Jul 2005 23:36:15 -0000 1.13
@@ -6,7 +6,7 @@
CPPFLAGS = -DPUNICODE_BUILD $(ICU_CFLAGS)
libpclasses_unicode_la_SOURCES = Char.cpp String.cpp Converter.cpp \
- UnicodeError.cpp TextStream.cpp
+ UnicodeError.cpp
libpclasses_unicode_la_LDFLAGS = -no-undefined
--- TextStream.cpp DELETED ---
|