1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// © 2018 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
#ifndef __SOURCE_NUMBER_CURRENCYSYMBOLS_H__
#define __SOURCE_NUMBER_CURRENCYSYMBOLS_H__
#include "numparse_types.h"
#include "charstr.h"
#include "number_decimfmtprops.h"
U_NAMESPACE_BEGIN namespace number {
namespace impl {
// Exported as U_I18N_API for tests
class U_I18N_API CurrencySymbols : public UMemory {
public:
CurrencySymbols() = default; // default constructor: leaves class in valid but undefined state
/** Creates an instance in which all symbols are loaded from data. */
CurrencySymbols(CurrencyUnit currency, const Locale& locale, UErrorCode& status);
/** Creates an instance in which some symbols might be pre-populated. */
CurrencySymbols(CurrencyUnit currency, const Locale& locale, const DecimalFormatSymbols& symbols,
UErrorCode& status);
const char16_t* getIsoCode() const;
UnicodeString getNarrowCurrencySymbol(UErrorCode& status) const;
UnicodeString getFormalCurrencySymbol(UErrorCode& status) const;
UnicodeString getVariantCurrencySymbol(UErrorCode& status) const;
UnicodeString getCurrencySymbol(UErrorCode& status) const;
UnicodeString getIntlCurrencySymbol(UErrorCode& status) const;
UnicodeString getPluralName(StandardPlural::Form plural, UErrorCode& status) const;
bool hasEmptyCurrencySymbol() const;
protected:
// Required fields:
CurrencyUnit fCurrency;
CharString fLocaleName;
// Optional fields:
UnicodeString fCurrencySymbol;
UnicodeString fIntlCurrencySymbol;
UnicodeString loadSymbol(UCurrNameStyle selector, UErrorCode& status) const;
};
/**
* Resolves the effective currency from the property bag.
*/
CurrencyUnit
resolveCurrency(const DecimalFormatProperties& properties, const Locale& locale, UErrorCode& status);
} // namespace impl
} // namespace numparse
U_NAMESPACE_END
#endif //__SOURCE_NUMBER_CURRENCYSYMBOLS_H__
#endif /* #if !UCONFIG_NO_FORMATTING */
|