| OLD | NEW |
| 1 /* | 1 /* |
| 2 ********************************************************************** | 2 ********************************************************************** |
| 3 * Copyright (c) 2001-2008, International Business Machines | 3 * Copyright (c) 2001-2014, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ********************************************************************** | 5 ********************************************************************** |
| 6 * Date Name Description | 6 * Date Name Description |
| 7 * 08/10/2001 aliu Creation. | 7 * 08/10/2001 aliu Creation. |
| 8 ********************************************************************** | 8 ********************************************************************** |
| 9 */ | 9 */ |
| 10 #ifndef _TRANSREG_H | 10 #ifndef _TRANSREG_H |
| 11 #define _TRANSREG_H | 11 #define _TRANSREG_H |
| 12 | 12 |
| 13 #include "unicode/utypes.h" | 13 #include "unicode/utypes.h" |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 * Vector of public full IDs. | 449 * Vector of public full IDs. |
| 450 */ | 450 */ |
| 451 UVector availableIDs; | 451 UVector availableIDs; |
| 452 | 452 |
| 453 TransliteratorRegistry(const TransliteratorRegistry &other); // forbid copyi
ng of this class | 453 TransliteratorRegistry(const TransliteratorRegistry &other); // forbid copyi
ng of this class |
| 454 TransliteratorRegistry &operator=(const TransliteratorRegistry &other); // f
orbid copying of this class | 454 TransliteratorRegistry &operator=(const TransliteratorRegistry &other); // f
orbid copying of this class |
| 455 }; | 455 }; |
| 456 | 456 |
| 457 U_NAMESPACE_END | 457 U_NAMESPACE_END |
| 458 | 458 |
| 459 U_CFUNC UBool utrans_transliterator_cleanup(void); |
| 460 |
| 459 #endif /* #if !UCONFIG_NO_TRANSLITERATION */ | 461 #endif /* #if !UCONFIG_NO_TRANSLITERATION */ |
| 460 | 462 |
| 461 #endif | 463 #endif |
| 462 //eof | 464 //eof |
| OLD | NEW |