89ff1a0f1d38b530922fdda9ac1dc4a80c81bcf0
[framework/web/wrt-plugins-common.git] / src / modules / API / Task / IEventCreateTask.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  * @file        IEventCreateTask.h
18  * @author      Shi Hezhang (hezhang.shi@samsung.com)
19  * @author      Pan Rui (r.pan@samsung.com)
20  * @version     0.1
21  */
22
23 #ifndef WRTDEVICEAPIS_TASK_IEVENT_CREATE_TASK_H_
24 #define WRTDEVICEAPIS_TASK_IEVENT_CREATE_TASK_H_
25
26 #include <dpl/shared_ptr.h>
27 #include <Commons/IEvent.h>
28 #include <Task/CalendarTask.h>
29
30 namespace WrtDeviceApis {
31 namespace Task {
32 namespace Api {
33
34 class IEventCreateTask : public Commons::IEvent<IEventCreateTask>
35 {
36     CalendarTaskPtr m_task;
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 setTask(CalendarTaskPtr value)
48     {
49         m_task = value;
50     }
51     CalendarTaskPtr getTask() const
52     {
53         return m_task;
54     }
55
56     IEventCreateTask() :
57         m_task(NULL),
58         m_result(false)
59     {
60     }
61     ~IEventCreateTask()
62     {
63     }
64     virtual void clearOnCancel()
65     {
66     }
67 };
68
69 typedef DPL::SharedPtr<IEventCreateTask> IEventCreateTaskPtr;
70
71 }
72 }
73 }
74 #endif // WRTDEVICEAPIS_TASK_IEVENT_CREATE_TASK_H_