ICU 53.1  53.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ustream.h
Go to the documentation of this file.
1 /*
2 **********************************************************************
3 * Copyright (C) 2001-2014 International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 * FILE NAME : ustream.h
7 *
8 * Modification History:
9 *
10 * Date Name Description
11 * 06/25/2001 grhoten Move iostream from unistr.h
12 ******************************************************************************
13 */
14 
15 #ifndef USTREAM_H
16 #define USTREAM_H
17 
18 #include "unicode/unistr.h"
19 
29 #if !defined(_MSC_VER)
30 namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
31 #endif
32 
33 #if U_IOSTREAM_SOURCE >= 199711
34 #if (__GNUC__ == 2)
35 #include <iostream>
36 #else
37 #include <istream>
38 #include <ostream>
39 #endif
40 
42 
50 U_IO_API std::ostream & U_EXPORT2 operator<<(std::ostream& stream, const UnicodeString& s);
51 
58 U_IO_API std::istream & U_EXPORT2 operator>>(std::istream& stream, UnicodeString& s);
60 
61 #endif
62 
63 /* No operator for UChar because it can conflict with wchar_t */
64 
65 #endif
C++ API: Unicode String.
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
Definition: uversion.h:129
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition: uversion.h:130
#define U_IO_API
Set to export library symbols from inside the ustdio library, and to import them from outside...
Definition: utypes.h:361