| OLD | NEW |
| 1 /* | 1 /* |
| 2 ********************************************************************** | 2 ********************************************************************** |
| 3 * Copyright (c) 2004-2010, International Business Machines | 3 * Copyright (c) 2004-2014, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ********************************************************************** | 5 ********************************************************************** |
| 6 * Author: Alan Liu | 6 * Author: Alan Liu |
| 7 * Created: April 20, 2004 | 7 * Created: April 20, 2004 |
| 8 * Since: ICU 3.0 | 8 * Since: ICU 3.0 |
| 9 ********************************************************************** | 9 ********************************************************************** |
| 10 */ | 10 */ |
| 11 #ifndef CURRENCYFORMAT_H | 11 #ifndef CURRENCYFORMAT_H |
| 12 #define CURRENCYFORMAT_H | 12 #define CURRENCYFORMAT_H |
| 13 | 13 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 CurrencyFormat(const CurrencyFormat& other); | 48 CurrencyFormat(const CurrencyFormat& other); |
| 49 | 49 |
| 50 /** | 50 /** |
| 51 * Destructor. | 51 * Destructor. |
| 52 */ | 52 */ |
| 53 virtual ~CurrencyFormat(); | 53 virtual ~CurrencyFormat(); |
| 54 | 54 |
| 55 /** | 55 /** |
| 56 * Override Format API. | 56 * Override Format API. |
| 57 */ | 57 */ |
| 58 virtual UBool operator==(const Format& other) const; | |
| 59 | |
| 60 /** | |
| 61 * Override Format API. | |
| 62 */ | |
| 63 virtual Format* clone() const; | 58 virtual Format* clone() const; |
| 64 | 59 |
| 65 | 60 |
| 66 using MeasureFormat::format; | 61 using MeasureFormat::format; |
| 67 | 62 |
| 68 /** | 63 /** |
| 69 * Override Format API. | 64 * Override Format API. |
| 70 */ | 65 */ |
| 71 virtual UnicodeString& format(const Formattable& obj, | 66 virtual UnicodeString& format(const Formattable& obj, |
| 72 UnicodeString& appendTo, | 67 UnicodeString& appendTo, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 92 | 87 |
| 93 private: | 88 private: |
| 94 | 89 |
| 95 NumberFormat* fmt; | 90 NumberFormat* fmt; |
| 96 }; | 91 }; |
| 97 | 92 |
| 98 U_NAMESPACE_END | 93 U_NAMESPACE_END |
| 99 | 94 |
| 100 #endif // #if !UCONFIG_NO_FORMATTING | 95 #endif // #if !UCONFIG_NO_FORMATTING |
| 101 #endif // #ifndef CURRENCYFORMAT_H | 96 #endif // #ifndef CURRENCYFORMAT_H |
| OLD | NEW |