diff options
Diffstat (limited to 'mobile_src/Calendar/CalendarManager.h')
-rwxr-xr-x | mobile_src/Calendar/CalendarManager.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/mobile_src/Calendar/CalendarManager.h b/mobile_src/Calendar/CalendarManager.h new file mode 100755 index 0000000..cd99c53 --- /dev/null +++ b/mobile_src/Calendar/CalendarManager.h @@ -0,0 +1,61 @@ +// +// Tizen Web Device API +// Copyright (c) 2012 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the License); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + + +#ifndef _CALENDARMANAGER_H_ +#define _CALENDARMANAGER_H_ + +#include "ICalendarManager.h" +#include "Calendar.h" +#include <dpl/mutex.h> + +namespace DeviceAPI { +namespace Calendar { + +class CalendarManager : public ICalendarManager +{ + public: + CalendarManager(); + virtual ~CalendarManager(); + + virtual void getDefaultCalendar(const IEventGetDefaultCalendarPtr &event) { + OnRequestReceived(event); + } + + virtual void getUnifiedCalendar(const IEventGetUnifiedCalendarPtr &event) { + OnRequestReceived(event); + } + + virtual void getCalendar(const IEventGetCalendarPtr &event) { + OnRequestReceived(event); + } + + protected: + virtual void OnRequestReceived(const IEventGetCalendarsPtr &event); + virtual void OnRequestReceived(const IEventGetDefaultCalendarPtr &event); + virtual void OnRequestReceived(const IEventGetUnifiedCalendarPtr &event); + virtual void OnRequestReceived(const IEventGetCalendarPtr &event); + + private: + static int m_instanceCount; + DPL::Mutex m_constructorMutex; +}; + +} +} + +#endif /* _CALENDARMANAGER_H_ */ |