a6bc072149
X-SVN-Rev: 36811
35 lines
909 B
C++
35 lines
909 B
C++
/*
|
|
******************************************************************************
|
|
* 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
|