| 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 #include <typeinfo> // for 'typeid' to work | 17 #include "unicode/utypeinfo.h" // for 'typeid' to work |
| 18 | 18 |
| 19 #include "nfsubs.h" | 19 #include "nfsubs.h" |
| 20 #include "digitlst.h" | 20 #include "digitlst.h" |
| 21 | 21 |
| 22 #if U_HAVE_RBNF | 22 #if U_HAVE_RBNF |
| 23 | 23 |
| 24 static const UChar gLessThan = 0x003c; | 24 static const UChar gLessThan = 0x003c; |
| 25 static const UChar gEquals = 0x003d; | 25 static const UChar gEquals = 0x003d; |
| 26 static const UChar gGreaterThan = 0x003e; | 26 static const UChar gGreaterThan = 0x003e; |
| 27 static const UChar gPercent = 0x0025; | 27 static const UChar gPercent = 0x0025; |
| (...skipping 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1308 // NullSubstitution | 1308 // NullSubstitution |
| 1309 //=================================================================== | 1309 //=================================================================== |
| 1310 | 1310 |
| 1311 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(NullSubstitution) | 1311 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(NullSubstitution) |
| 1312 | 1312 |
| 1313 U_NAMESPACE_END | 1313 U_NAMESPACE_END |
| 1314 | 1314 |
| 1315 /* U_HAVE_RBNF */ | 1315 /* U_HAVE_RBNF */ |
| 1316 #endif | 1316 #endif |
| 1317 | 1317 |
| OLD | NEW |