Tizen 2.1 base
[platform/framework/web/wrt-plugins-common.git] / src / modules / API / Calendar / ICalendar.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file        ICalendar.cpp
18  * @author      Lukasz Marek (l.marek@samsung.com)
19  * @version     0.1
20  */
21
22 #include "ICalendar.h"
23 #include <Commons/ThreadPool.h>
24
25 namespace WrtDeviceApis {
26 namespace Calendar {
27 namespace Api {
28
29 ICalendar::ICalendar() :
30     Commons::EventRequestReceiver<EventAddEvent>(
31         Commons::ThreadEnum::CALENDAR_THREAD),
32     Commons::EventRequestReceiver<EventDeleteEvent>(
33         Commons::ThreadEnum::CALENDAR_THREAD),
34     Commons::EventRequestReceiver<EventUpdateEvent>(
35         Commons::ThreadEnum::CALENDAR_THREAD),
36     Commons::EventRequestReceiver<EventFindEvents>(
37         Commons::ThreadEnum::CALENDAR_THREAD),
38     Commons::EventRequestReceiver<EventCreateEvent>(
39         Commons::ThreadEnum::CALENDAR_THREAD),
40     m_id(0),
41     m_accountId(0),
42     m_type(DEVICE_CALENDAR)
43 {
44 }
45
46 ICalendar::~ICalendar()
47 {
48 }
49
50 void ICalendar::createEvent(const EventCreateEventPtr &event)
51 {
52     Commons::EventRequestReceiver<EventCreateEvent>::PostRequest(event);
53 }
54
55 void ICalendar::addEvent(const EventAddEventPtr &event)
56 {
57     Commons::EventRequestReceiver<EventAddEvent>::PostRequest(event);
58 }
59
60 void ICalendar::updateEvent(const EventUpdateEventPtr &event)
61 {
62     Commons::EventRequestReceiver<EventUpdateEvent>::PostRequest(event);
63 }
64
65 void ICalendar::deleteEvent(const EventDeleteEventPtr &event)
66 {
67     Commons::EventRequestReceiver<EventDeleteEvent>::PostRequest(event);
68 }
69
70 void ICalendar::findEvents(const EventFindEventsPtr &event)
71 {
72     Commons::EventRequestReceiver<EventFindEvents>::PostRequest(event);
73 }
74
75 }
76 }
77 }