]> git.saurik.com Git - apple/icu.git/blob - icuSources/io/unicode/ustream.h
ICU-59152.0.1.tar.gz
[apple/icu.git] / icuSources / io / unicode / ustream.h
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 **********************************************************************
5 * Copyright (C) 2001-2014 International Business Machines
6 * Corporation and others. All Rights Reserved.
7 **********************************************************************
8 * FILE NAME : ustream.h
9 *
10 * Modification History:
11 *
12 * Date Name Description
13 * 06/25/2001 grhoten Move iostream from unistr.h
14 ******************************************************************************
15 */
16
17 #ifndef USTREAM_H
18 #define USTREAM_H
19
20 #include "unicode/unistr.h"
21
22 #if !UCONFIG_NO_CONVERSION // not available without conversion
23
24 /**
25 * \file
26 * \brief C++ API: Unicode iostream like API
27 *
28 * At this time, this API is very limited. It contains
29 * operator<< and operator>> for UnicodeString manipulation with the
30 * C++ I/O stream API.
31 */
32
33 #if defined(__GLIBCXX__)
34 namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
35 #endif
36
37 #if U_IOSTREAM_SOURCE >= 199711
38 #if (__GNUC__ == 2)
39 #include <iostream>
40 #else
41 #include <istream>
42 #include <ostream>
43 #endif
44
45 #if U_SHOW_CPLUSPLUS_API
46 U_NAMESPACE_BEGIN
47
48 /**
49 * Write the contents of a UnicodeString to a C++ ostream. This functions writes
50 * the characters in a UnicodeString to an ostream. The UChars in the
51 * UnicodeString are converted to the char based ostream with the default
52 * converter.
53 * @stable 3.0
54 */
55 U_IO_API std::ostream & U_EXPORT2 operator<<(std::ostream& stream, const UnicodeString& s);
56
57 /**
58 * Write the contents from a C++ istream to a UnicodeString. The UChars in the
59 * UnicodeString are converted from the char based istream with the default
60 * converter.
61 * @stable 3.0
62 */
63 U_IO_API std::istream & U_EXPORT2 operator>>(std::istream& stream, UnicodeString& s);
64 U_NAMESPACE_END
65 #endif // U_SHOW_CPLUSPLUS_API
66
67 #endif
68
69 /* No operator for UChar because it can conflict with wchar_t */
70
71 #endif
72 #endif