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

Side by Side Diff: source/i18n/sharedpluralrules.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/sharednumberformat.h ('k') | source/i18n/smpdtfmt.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) 2014, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 ******************************************************************************
6 * sharedpluralrules.h
7 */
8
9 #ifndef __SHARED_PLURALRULES_H__
10 #define __SHARED_PLURALRULES_H__
11
12 #include "unicode/utypes.h"
13 #include "sharedobject.h"
14
15 U_NAMESPACE_BEGIN
16
17 class PluralRules;
18
19 class U_I18N_API SharedPluralRules : public SharedObject {
20 public:
21 SharedPluralRules(PluralRules *prToAdopt) : ptr(prToAdopt) { }
22 virtual ~SharedPluralRules();
23 const PluralRules *operator->() const { return ptr; }
24 const PluralRules &operator*() const { return *ptr; }
25 private:
26 PluralRules *ptr;
27 SharedPluralRules(const SharedPluralRules &);
28 SharedPluralRules &operator=(const SharedPluralRules &);
29 };
30
31 U_NAMESPACE_END
32
33 #endif
OLDNEW
« no previous file with comments | « source/i18n/sharednumberformat.h ('k') | source/i18n/smpdtfmt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698