summaryrefslogtreecommitdiff
path: root/deps/icu-small/source/i18n/sharedcalendar.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/icu-small/source/i18n/sharedcalendar.h')
-rw-r--r--deps/icu-small/source/i18n/sharedcalendar.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/deps/icu-small/source/i18n/sharedcalendar.h b/deps/icu-small/source/i18n/sharedcalendar.h
new file mode 100644
index 0000000000..2a10c88b59
--- /dev/null
+++ b/deps/icu-small/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