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

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

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 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/sharedcalendar.h ('k') | source/i18n/significantdigitinterval.h » ('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 * shareddateformatsymbols.h
7 */
8
9 #ifndef __SHARED_DATEFORMATSYMBOLS_H__
10 #define __SHARED_DATEFORMATSYMBOLS_H__
11
12 #include "unicode/utypes.h"
13 #include "sharedobject.h"
14 #include "unicode/dtfmtsym.h"
15
16 U_NAMESPACE_BEGIN
17
18
19 class U_I18N_API SharedDateFormatSymbols : public SharedObject {
20 public:
21 SharedDateFormatSymbols(
22 const Locale &loc, const char *type, UErrorCode &status)
23 : dfs(loc, type, status) { }
24 virtual ~SharedDateFormatSymbols();
25 const DateFormatSymbols &get() const { return dfs; }
26 private:
27 DateFormatSymbols dfs;
28 SharedDateFormatSymbols(const SharedDateFormatSymbols &);
29 SharedDateFormatSymbols &operator=(const SharedDateFormatSymbols &);
30 };
31
32 U_NAMESPACE_END
33
34 #endif
OLDNEW
« no previous file with comments | « source/i18n/sharedcalendar.h ('k') | source/i18n/significantdigitinterval.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698