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

Side by Side Diff: icu46/source/i18n/tolowtrn.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/tolowtrn.h ('k') | icu46/source/i18n/toupptrn.h » ('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) 2001-2007, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 * Date Name Description
7 * 05/24/01 aliu Creation.
8 **********************************************************************
9 */
10
11 #include "unicode/utypes.h"
12
13 #if !UCONFIG_NO_TRANSLITERATION
14
15 #include "unicode/uchar.h"
16 #include "unicode/ustring.h"
17 #include "tolowtrn.h"
18 #include "ustr_imp.h"
19 #include "cpputils.h"
20
21 U_NAMESPACE_BEGIN
22
23 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(LowercaseTransliterator)
24
25 /**
26 * Constructs a transliterator.
27 */
28 LowercaseTransliterator::LowercaseTransliterator() :
29 CaseMapTransliterator(UNICODE_STRING("Any-Lower", 9), ucase_toFullLower)
30 {
31 }
32
33 /**
34 * Destructor.
35 */
36 LowercaseTransliterator::~LowercaseTransliterator() {
37 }
38
39 /**
40 * Copy constructor.
41 */
42 LowercaseTransliterator::LowercaseTransliterator(const LowercaseTransliterator& o) :
43 CaseMapTransliterator(o)
44 {
45 }
46
47 /**
48 * Assignment operator.
49 */
50 /*LowercaseTransliterator& LowercaseTransliterator::operator=(
51 const LowercaseTransliterator& o) {
52 CaseMapTransliterator::operator=(o);
53 return *this;
54 }*/
55
56 /**
57 * Transliterator API.
58 */
59 Transliterator* LowercaseTransliterator::clone(void) const {
60 return new LowercaseTransliterator(*this);
61 }
62
63 U_NAMESPACE_END
64
65 #endif /* #if !UCONFIG_NO_TRANSLITERATION */
OLDNEW
« no previous file with comments | « icu46/source/i18n/tolowtrn.h ('k') | icu46/source/i18n/toupptrn.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698