5fef48a8f6ec3ea69dae9cd937516013dfc2c387
[framework/web/wrt-plugins-tizen.git] / src / Calendar / IEventWatchChanges.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18
19 #ifndef _IEVENT_WATCH_CHANGES_H_
20 #define _IEVENT_WATCH_CHANGES_H_
21
22 #include <dpl/shared_ptr.h>
23 #include <Commons/IEvent.h>
24 #include "CalendarEvent.h"
25 #include "OnEventsChanged.h"
26
27 namespace DeviceAPI {
28 namespace Calendar {
29
30 class IEventWatchChanges : public WrtDeviceApis::Commons::IEvent<IEventWatchChanges>
31 {
32     AttributeListPtr m_attributesOfInterest;
33     bool m_result;
34     long m_watchId;
35     OnEventsChangedEmitterPtr m_emitter;
36
37   public:
38     void             setResult(bool value)
39     {
40         m_result = value;
41     }
42     bool             getResult() const
43     {
44         return m_result;
45     }
46
47     void             setAttributes(AttributeListPtr value)
48     {
49         m_attributesOfInterest = value;
50     }
51     AttributeListPtr getAttributes() const
52     {
53         return m_attributesOfInterest;
54     }
55
56     void             setWatchId(long value)
57     {
58         m_watchId = value;
59     }
60     long            getWatchId() const
61     {
62         return m_watchId;
63     }
64
65     void             setEmitter(OnEventsChangedEmitterPtr value)
66     {
67         m_emitter = value;
68     }
69     OnEventsChangedEmitterPtr            getEmitter() const
70     {
71         return m_emitter;
72     }
73
74     IEventWatchChanges() : m_result(false)
75     {
76     }
77     ~IEventWatchChanges()
78     {
79     }
80     virtual void clearOnCancel()
81     {
82     }
83 };
84
85 typedef DPL::SharedPtr<IEventWatchChanges> IEventWatchChangesPtr;
86
87 }
88 }
89 #endif /* _IEVENT_WATCH_CHANGES_H_ */