OLD | NEW |
1 /* | 1 /* |
2 ****************************************************************************** | 2 ****************************************************************************** |
3 * Copyright (C) 1998-2010, International Business Machines Corporation and | 3 * Copyright (C) 1998-2010, International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 ****************************************************************************** | 5 ****************************************************************************** |
6 * | 6 * |
7 * File schriter.cpp | 7 * File schriter.cpp |
8 * | 8 * |
9 * Modification History: | 9 * Modification History: |
10 * | 10 * |
11 * Date Name Description | 11 * Date Name Description |
12 * 05/05/99 stephen Cleaned up. | 12 * 05/05/99 stephen Cleaned up. |
13 ****************************************************************************** | 13 ****************************************************************************** |
14 */ | 14 */ |
15 | 15 |
| 16 #if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS |
| 17 #include <exception> |
| 18 using std::exception; |
| 19 #endif |
16 #include <typeinfo> // for 'typeid' to work | 20 #include <typeinfo> // for 'typeid' to work |
17 | 21 |
18 #include "unicode/chariter.h" | 22 #include "unicode/chariter.h" |
19 #include "unicode/schriter.h" | 23 #include "unicode/schriter.h" |
20 | 24 |
21 U_NAMESPACE_BEGIN | 25 U_NAMESPACE_BEGIN |
22 | 26 |
23 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringCharacterIterator) | 27 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringCharacterIterator) |
24 | 28 |
25 StringCharacterIterator::StringCharacterIterator() | 29 StringCharacterIterator::StringCharacterIterator() |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 StringCharacterIterator::setText(const UnicodeString& newText) { | 112 StringCharacterIterator::setText(const UnicodeString& newText) { |
109 text = newText; | 113 text = newText; |
110 UCharCharacterIterator::setText(text.getBuffer(), text.length()); | 114 UCharCharacterIterator::setText(text.getBuffer(), text.length()); |
111 } | 115 } |
112 | 116 |
113 void | 117 void |
114 StringCharacterIterator::getText(UnicodeString& result) { | 118 StringCharacterIterator::getText(UnicodeString& result) { |
115 result = text; | 119 result = text; |
116 } | 120 } |
117 U_NAMESPACE_END | 121 U_NAMESPACE_END |
OLD | NEW |