]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/fmtable_cnv.cpp
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 *******************************************************************************
5 * Copyright (C) 1997-2010, International Business Machines Corporation and *
6 * others. All Rights Reserved. *
7 *******************************************************************************
11 * Modification History:
13 * Date Name Description
14 * 03/25/97 clhuang Initial Implementation.
15 ********************************************************************************
18 #include "unicode/utypes.h"
20 #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
22 #include "unicode/fmtable.h"
24 // *****************************************************************************
26 // *****************************************************************************
30 // -------------------------------------
31 // Creates a formattable object with a char* string.
32 // This API is useless. The API that takes a UnicodeString is actually just as good.
33 // This is just a grandfathered API.
35 Formattable::Formattable(const char* stringToCopy
)
39 fValue
.fString
= new UnicodeString(stringToCopy
);
44 #endif /* #if !UCONFIG_NO_FORMATTING || !UCONFIG_NO_CONVERSION */