]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/fmtable_cnv.cpp
2 *******************************************************************************
3 * Copyright (C) 1997-2010, International Business Machines Corporation and *
4 * others. All Rights Reserved. *
5 *******************************************************************************
9 * Modification History:
11 * Date Name Description
12 * 03/25/97 clhuang Initial Implementation.
13 ********************************************************************************
16 #include "unicode/utypes.h"
18 #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
20 #include "unicode/fmtable.h"
22 // *****************************************************************************
24 // *****************************************************************************
28 // -------------------------------------
29 // Creates a formattable object with a char* string.
30 // This API is useless. The API that takes a UnicodeString is actually just as good.
31 // This is just a grandfathered API.
33 Formattable::Formattable(const char* stringToCopy
)
37 fValue
.fString
= new UnicodeString(stringToCopy
);
42 #endif /* #if !UCONFIG_NO_FORMATTING || !UCONFIG_NO_CONVERSION */