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 U_NAMESPACE_USE
00021
00022
00029 #if U_IOSTREAM_SOURCE >= 199711
00030 #include <iostream>
00031 U_USTDIO_API std::ostream &operator<<(std::ostream& stream, const UnicodeString& s);
00032
00033 U_USTDIO_API std::istream &operator>>(std::istream& stream, UnicodeString& s);
00034 #elif U_IOSTREAM_SOURCE >= 198506
00035 #include <iostream.h>
00036 U_USTDIO_API ostream &operator<<(ostream& stream, const UnicodeString& s);
00037
00038 U_USTDIO_API istream &operator>>(istream& stream, UnicodeString& s);
00039 #endif
00040
00041
00042
00043
00044 #endif