Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: icu46/source/i18n/fmtable_cnv.cpp

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « icu46/source/i18n/fmtable.cpp ('k') | icu46/source/i18n/format.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 *******************************************************************************
3 * Copyright (C) 1997-2010, International Business Machines Corporation and *
4 * others. All Rights Reserved. *
5 *******************************************************************************
6 *
7 * File FMTABLE.CPP
8 *
9 * Modification History:
10 *
11 * Date Name Description
12 * 03/25/97 clhuang Initial Implementation.
13 ********************************************************************************
14 */
15
16 #include "unicode/utypes.h"
17
18 #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
19
20 #include "unicode/fmtable.h"
21
22 // *****************************************************************************
23 // class Formattable
24 // *****************************************************************************
25
26 U_NAMESPACE_BEGIN
27
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 g ood.
31 // This is just a grandfathered API.
32
33 Formattable::Formattable(const char* stringToCopy)
34 {
35 init();
36 fType = kString;
37 fValue.fString = new UnicodeString(stringToCopy);
38 }
39
40 U_NAMESPACE_END
41
42 #endif /* #if !UCONFIG_NO_FORMATTING || !UCONFIG_NO_CONVERSION */
43
44 //eof
OLDNEW
« no previous file with comments | « icu46/source/i18n/fmtable.cpp ('k') | icu46/source/i18n/format.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698