ICU 4.8.1.1
4.8.1.1
|
00001 /* 00002 ********************************************************************** 00003 * Copyright (c) 2004-2006, International Business Machines 00004 * Corporation and others. All Rights Reserved. 00005 ********************************************************************** 00006 * Author: Alan Liu 00007 * Created: April 20, 2004 00008 * Since: ICU 3.0 00009 ********************************************************************** 00010 */ 00011 #ifndef MEASUREFORMAT_H 00012 #define MEASUREFORMAT_H 00013 00014 #include "unicode/utypes.h" 00015 00016 #if !UCONFIG_NO_FORMATTING 00017 00018 #include "unicode/format.h" 00019 00025 U_NAMESPACE_BEGIN 00026 00041 class U_I18N_API MeasureFormat : public Format { 00042 00043 public: 00044 00053 static MeasureFormat* U_EXPORT2 createCurrencyFormat(const Locale& locale, 00054 UErrorCode& ec); 00055 00063 static MeasureFormat* U_EXPORT2 createCurrencyFormat(UErrorCode& ec); 00064 00065 protected: 00066 00071 MeasureFormat(); 00072 }; 00073 00074 U_NAMESPACE_END 00075 00076 #endif // #if !UCONFIG_NO_FORMATTING 00077 #endif // #ifndef MEASUREFORMAT_H