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

Side by Side Diff: source/i18n/unicode/currunit.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/unicode/compactdecimalformat.h ('k') | source/i18n/unicode/datefmt.h » ('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-2006, 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 26, 2004 7 * Created: April 26, 2004
8 * Since: ICU 3.0 8 * Since: ICU 3.0
9 ********************************************************************** 9 **********************************************************************
10 */ 10 */
11 #ifndef __CURRENCYUNIT_H__ 11 #ifndef __CURRENCYUNIT_H__
12 #define __CURRENCYUNIT_H__ 12 #define __CURRENCYUNIT_H__
13 13
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 */ 63 */
64 virtual UObject* clone() const; 64 virtual UObject* clone() const;
65 65
66 /** 66 /**
67 * Destructor 67 * Destructor
68 * @stable ICU 3.0 68 * @stable ICU 3.0
69 */ 69 */
70 virtual ~CurrencyUnit(); 70 virtual ~CurrencyUnit();
71 71
72 /** 72 /**
73 * Equality operator. Return true if this object is equal
74 * to the given object.
75 * @stable ICU 3.0
76 */
77 UBool operator==(const UObject& other) const;
78
79 /**
80 * Returns a unique class ID for this object POLYMORPHICALLY. 73 * Returns a unique class ID for this object POLYMORPHICALLY.
81 * This method implements a simple form of RTTI used by ICU. 74 * This method implements a simple form of RTTI used by ICU.
82 * @return The class ID for this object. All objects of a given 75 * @return The class ID for this object. All objects of a given
83 * class have the same class ID. Objects of other classes have 76 * class have the same class ID. Objects of other classes have
84 * different class IDs. 77 * different class IDs.
85 * @stable ICU 3.0 78 * @stable ICU 3.0
86 */ 79 */
87 virtual UClassID getDynamicClassID() const; 80 virtual UClassID getDynamicClassID() const;
88 81
89 /** 82 /**
(...skipping 18 matching lines...) Expand all
108 }; 101 };
109 102
110 inline const UChar* CurrencyUnit::getISOCurrency() const { 103 inline const UChar* CurrencyUnit::getISOCurrency() const {
111 return isoCode; 104 return isoCode;
112 } 105 }
113 106
114 U_NAMESPACE_END 107 U_NAMESPACE_END
115 108
116 #endif // !UCONFIG_NO_FORMATTING 109 #endif // !UCONFIG_NO_FORMATTING
117 #endif // __CURRENCYUNIT_H__ 110 #endif // __CURRENCYUNIT_H__
OLDNEW
« no previous file with comments | « source/i18n/unicode/compactdecimalformat.h ('k') | source/i18n/unicode/datefmt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698