]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/measfmt.cpp
2 **********************************************************************
3 * Copyright (c) 2004, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
7 * Created: April 20, 2004
9 **********************************************************************
11 #include "unicode/utypes.h"
13 #if !UCONFIG_NO_FORMATTING
15 #include "unicode/measfmt.h"
20 MeasureFormat::MeasureFormat() {}
22 MeasureFormat
* U_EXPORT2
MeasureFormat::createCurrencyFormat(const Locale
& locale
,
24 CurrencyFormat
* fmt
= NULL
;
26 fmt
= new CurrencyFormat(locale
, ec
);
35 MeasureFormat
* U_EXPORT2
MeasureFormat::createCurrencyFormat(UErrorCode
& ec
) {
39 return MeasureFormat::createCurrencyFormat(Locale::getDefault(), ec
);
44 #endif /* #if !UCONFIG_NO_FORMATTING */