| OLD | NEW |
| 1 /* | 1 /* |
| 2 ****************************************************************************** | 2 ****************************************************************************** |
| 3 * Copyright (C) 1997-2010, International Business Machines | 3 * Copyright (C) 1997-2010, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ****************************************************************************** | 5 ****************************************************************************** |
| 6 * file name: nfsubs.cpp | 6 * file name: nfsubs.cpp |
| 7 * encoding: US-ASCII | 7 * encoding: US-ASCII |
| 8 * tab size: 8 (not used) | 8 * tab size: 8 (not used) |
| 9 * indentation:4 | 9 * indentation:4 |
| 10 * | 10 * |
| 11 * Modification history | 11 * Modification history |
| 12 * Date Name Comments | 12 * Date Name Comments |
| 13 * 10/11/2001 Doug Ported from ICU4J | 13 * 10/11/2001 Doug Ported from ICU4J |
| 14 */ | 14 */ |
| 15 | 15 |
| 16 #include <stdio.h> | 16 #include <stdio.h> |
| 17 #if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS |
| 18 #include <exception> |
| 19 using std::exception; |
| 20 #endif |
| 17 #include <typeinfo> // for 'typeid' to work | 21 #include <typeinfo> // for 'typeid' to work |
| 18 | 22 |
| 19 #include "nfsubs.h" | 23 #include "nfsubs.h" |
| 20 #include "digitlst.h" | 24 #include "digitlst.h" |
| 21 | 25 |
| 22 #if U_HAVE_RBNF | 26 #if U_HAVE_RBNF |
| 23 | 27 |
| 24 static const UChar gLessThan = 0x003c; | 28 static const UChar gLessThan = 0x003c; |
| 25 static const UChar gEquals = 0x003d; | 29 static const UChar gEquals = 0x003d; |
| 26 static const UChar gGreaterThan = 0x003e; | 30 static const UChar gGreaterThan = 0x003e; |
| (...skipping 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1308 // NullSubstitution | 1312 // NullSubstitution |
| 1309 //=================================================================== | 1313 //=================================================================== |
| 1310 | 1314 |
| 1311 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(NullSubstitution) | 1315 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(NullSubstitution) |
| 1312 | 1316 |
| 1313 U_NAMESPACE_END | 1317 U_NAMESPACE_END |
| 1314 | 1318 |
| 1315 /* U_HAVE_RBNF */ | 1319 /* U_HAVE_RBNF */ |
| 1316 #endif | 1320 #endif |
| 1317 | 1321 |
| OLD | NEW |