Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Side by Side Diff: source/i18n/currfmt.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/i18n/csrutf8.cpp ('k') | source/i18n/currfmt.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « source/i18n/csrutf8.cpp ('k') | source/i18n/currfmt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698