tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Calendar / EventGetCalendars.h
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  * @author      Lukasz Marek (l.marek@samsung.com)
18  * @version     0.1
19  * @brief
20  */
21
22 #ifndef WRTDEVICEAPIS_CALENDAR_IEVENT_GET_CALENDARS_H_
23 #define WRTDEVICEAPIS_CALENDAR_IEVENT_GET_CALENDARS_H_
24
25 #include <vector>
26 #include <dpl/shared_ptr.h>
27 #include <Commons/IEvent.h>
28 #include <Calendar/ICalendar.h>
29
30 namespace WrtDeviceApis {
31 namespace Calendar {
32 namespace Api {
33
34 class EventGetCalendars : public Commons::IEvent<EventGetCalendars>
35 {
36     std::vector<ICalendarPtr> m_calendars;
37     bool m_result;
38   public:
39     void setResult(bool value)
40     {
41         m_result = value;
42     }
43     bool getResult() const
44     {
45         return m_result;
46     }
47     void addCalendar(ICalendarPtr value)
48     {
49         m_calendars.push_back(value);
50     }
51     std::vector<ICalendarPtr> getCalendars() const
52     {
53         return m_calendars;
54     }
55     EventGetCalendars() : m_result(false)
56     {
57     }
58     ~EventGetCalendars()
59     {
60     }
61     virtual void clearOnCancel()
62     {
63     }
64 };
65
66 typedef DPL::SharedPtr<EventGetCalendars> EventGetCalendarsPtr;
67
68 }
69 }
70 }
71
72 #endif // WRTDEVICEAPIS_CALENDAR_IEVENT_UPDATE_EVENT_H_