]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/unicode/measfmt.h
2 **********************************************************************
3 * Copyright (c) 2004-2006, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
7 * Created: April 20, 2004
9 **********************************************************************
11 #ifndef MEASUREFORMAT_H
12 #define MEASUREFORMAT_H
14 #include "unicode/utypes.h"
16 #if !UCONFIG_NO_FORMATTING
18 #include "unicode/format.h"
22 * \brief C++ API: Formatter for measure objects.
29 * A formatter for measure objects. This is an abstract base class.
31 * <p>To format or parse a measure object, first create a formatter
32 * object using a MeasureFormat factory method. Then use that
33 * object's format and parse methods.
35 * <p>This is an abstract class.
41 class U_I18N_API MeasureFormat
: public Format
{
46 * Return a formatter for CurrencyAmount objects in the given
48 * @param locale desired locale
49 * @param ec input-output error code
50 * @return a formatter object, or NULL upon error
53 static MeasureFormat
* U_EXPORT2
createCurrencyFormat(const Locale
& locale
,
57 * Return a formatter for CurrencyAmount objects in the default
59 * @param ec input-output error code
60 * @return a formatter object, or NULL upon error
63 static MeasureFormat
* U_EXPORT2
createCurrencyFormat(UErrorCode
& ec
);
68 * Default constructor.
76 #endif // #if !UCONFIG_NO_FORMATTING
77 #endif // #ifndef MEASUREFORMAT_H