| OLD | NEW |
| 1 /* | 1 /* |
| 2 ******************************************************************************* | 2 ******************************************************************************* |
| 3 * Copyright (C) 2007-2015, International Business Machines Corporation and | 3 * Copyright (C) 2007-2015, International Business Machines Corporation and |
| 4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
| 5 ******************************************************************************* | 5 ******************************************************************************* |
| 6 * | 6 * |
| 7 * File PLURRULE_IMPL.H | 7 * File PLURRULE_IMPL.H |
| 8 * | 8 * |
| 9 ******************************************************************************* | 9 ******************************************************************************* |
| 10 */ | 10 */ |
| 11 | 11 |
| 12 | 12 |
| 13 #ifndef PLURRULE_IMPLE | 13 #ifndef PLURRULE_IMPL |
| 14 #define PLURRULE_IMPLE | 14 #define PLURRULE_IMPL |
| 15 | 15 |
| 16 // Internal definitions for the PluralRules implementation. | 16 // Internal definitions for the PluralRules implementation. |
| 17 | 17 |
| 18 #include "unicode/utypes.h" |
| 19 |
| 18 #if !UCONFIG_NO_FORMATTING | 20 #if !UCONFIG_NO_FORMATTING |
| 19 | 21 |
| 20 #include "unicode/format.h" | 22 #include "unicode/format.h" |
| 21 #include "unicode/locid.h" | 23 #include "unicode/locid.h" |
| 22 #include "unicode/parseerr.h" | 24 #include "unicode/parseerr.h" |
| 23 #include "unicode/ures.h" | 25 #include "unicode/ures.h" |
| 24 #include "unicode/utypes.h" | |
| 25 #include "uvector.h" | 26 #include "uvector.h" |
| 26 #include "hash.h" | 27 #include "hash.h" |
| 27 | 28 |
| 28 class PluralRulesTest; | 29 class PluralRulesTest; |
| 29 | 30 |
| 30 U_NAMESPACE_BEGIN | 31 U_NAMESPACE_BEGIN |
| 31 | 32 |
| 32 class AndConstraint; | 33 class AndConstraint; |
| 33 class RuleChain; | 34 class RuleChain; |
| 34 class DigitInterval; | 35 class DigitInterval; |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 UResourceBundle *fLocales; | 300 UResourceBundle *fLocales; |
| 300 UResourceBundle *fRes; | 301 UResourceBundle *fRes; |
| 301 }; | 302 }; |
| 302 | 303 |
| 303 U_NAMESPACE_END | 304 U_NAMESPACE_END |
| 304 | 305 |
| 305 #endif /* #if !UCONFIG_NO_FORMATTING */ | 306 #endif /* #if !UCONFIG_NO_FORMATTING */ |
| 306 | 307 |
| 307 #endif // _PLURRULE_IMPL | 308 #endif // _PLURRULE_IMPL |
| 308 //eof | 309 //eof |
| OLD | NEW |