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

Side by Side Diff: source/i18n/collationroot.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months 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
« no previous file with comments | « source/i18n/collationkeys.cpp ('k') | source/i18n/collationroot.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 *******************************************************************************
3 * Copyright (C) 2012-2014, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 *******************************************************************************
6 * collationroot.h
7 *
8 * created on: 2012dec17
9 * created by: Markus W. Scherer
10 */
11
12 #ifndef __COLLATIONROOT_H__
13 #define __COLLATIONROOT_H__
14
15 #include "unicode/utypes.h"
16
17 #if !UCONFIG_NO_COLLATION
18
19 U_NAMESPACE_BEGIN
20
21 struct CollationCacheEntry;
22 struct CollationData;
23 struct CollationSettings;
24 struct CollationTailoring;
25
26 /**
27 * Collation root provider.
28 */
29 class U_I18N_API CollationRoot { // purely static
30 public:
31 static const CollationCacheEntry *getRootCacheEntry(UErrorCode &errorCode);
32 static const CollationTailoring *getRoot(UErrorCode &errorCode);
33 static const CollationData *getData(UErrorCode &errorCode);
34 static const CollationSettings *getSettings(UErrorCode &errorCode);
35
36 private:
37 static void load(UErrorCode &errorCode);
38 };
39
40 U_NAMESPACE_END
41
42 #endif // !UCONFIG_NO_COLLATION
43 #endif // __COLLATIONROOT_H__
OLDNEW
« no previous file with comments | « source/i18n/collationkeys.cpp ('k') | source/i18n/collationroot.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698