tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Power / EventLight.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  *
18  *
19  * @file       EventLight.h
20  * @author     Hoseon LEE (Hoseon46.lee@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24
25 #ifndef WRTDEVICEAPIS_POWER_EVENTLIGHT_H_
26 #define WRTDEVICEAPIS_POWER_EVENTLIGHT_H_
27
28 #include <dpl/shared_ptr.h>
29 #include <Commons/IEvent.h>
30 #include <Power/Enums.h>
31
32 namespace WrtDeviceApis {
33 namespace Power {
34 namespace Api {
35
36 class EventLight;
37
38 typedef DPL::SharedPtr<EventLight> EventLightPtr;
39
40 /*
41  *
42  */
43 class EventLight : public Commons::IEvent<EventLight>
44 {
45   public:
46     explicit EventLight(const BacklightStatus status,
47                         const long duration) :
48         m_status(status),
49         m_duration(duration)
50     {
51     }
52
53     BacklightStatus getStatus() const
54     {
55         return m_status;
56     }
57
58     long getDuration() const
59     {
60         return m_duration;
61     }
62
63   private:
64     const BacklightStatus m_status;
65     const long m_duration;
66 };
67
68 }
69 }
70 }
71
72 #endif // WRTDEVICEAPIS_POWER_EVENTLIGHT_H_