00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef USTREAM_H
00016 #define USTREAM_H
00017
00018 #include "unicode/unistr.h"
00019
00020 #if !UCONFIG_NO_CONVERSION // not available without conversion
00021
00031 #if !defined(_MSC_VER)
00032 namespace std { class type_info; }
00033 #endif
00034
00035 #if U_IOSTREAM_SOURCE >= 199711
00036 #if (__GNUC__ == 2)
00037 #include <iostream>
00038 #else
00039 #include <istream>
00040 #include <ostream>
00041 #endif
00042
00043 U_NAMESPACE_BEGIN
00044
00052 U_IO_API std::ostream & U_EXPORT2 operator<<(std::ostream& stream, const UnicodeString& s);
00053
00060 U_IO_API std::istream & U_EXPORT2 operator>>(std::istream& stream, UnicodeString& s);
00061 U_NAMESPACE_END
00062
00063 #endif
00064
00065
00066
00067 #endif
00068 #endif