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

Unified Diff: source/i18n/sharedcalendar.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/i18n/scientificnumberformatter.cpp ('k') | source/i18n/shareddateformatsymbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/i18n/sharedcalendar.h
diff --git a/source/i18n/sharedcalendar.h b/source/i18n/sharedcalendar.h
new file mode 100644
index 0000000000000000000000000000000000000000..2a10c88b593851b46c2c4213a8dd2f97bf3570d5
--- /dev/null
+++ b/source/i18n/sharedcalendar.h
@@ -0,0 +1,34 @@
+/*
+******************************************************************************
+* Copyright (C) 2014, International Business Machines
+* Corporation and others. All Rights Reserved.
+******************************************************************************
+* sharedcalendar.h
+*/
+
+#ifndef __SHARED_CALENDAR_H__
+#define __SHARED_CALENDAR_H__
+
+#include "unicode/utypes.h"
+#include "sharedobject.h"
+
+U_NAMESPACE_BEGIN
+
+class Calendar;
+
+class U_I18N_API SharedCalendar : public SharedObject {
+public:
+ SharedCalendar(Calendar *calToAdopt) : ptr(calToAdopt) { }
+ virtual ~SharedCalendar();
+ const Calendar *get() const { return ptr; }
+ const Calendar *operator->() const { return ptr; }
+ const Calendar &operator*() const { return *ptr; }
+private:
+ Calendar *ptr;
+ SharedCalendar(const SharedCalendar &);
+ SharedCalendar &operator=(const SharedCalendar &);
+};
+
+U_NAMESPACE_END
+
+#endif
« no previous file with comments | « source/i18n/scientificnumberformatter.cpp ('k') | source/i18n/shareddateformatsymbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698