tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Accelerometer / EventAccelerationChanged.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          EventAccelerationChanged.h
18  * @author      Qi Xiangguo (xiangguo.qi@samsung.com)
19  * @version     0.1
20  * @brief
21  */
22
23 #ifndef WRTDEVICEAPIS_ACCELEROMETER_EVENT_ACCELERATION_CHANGED_H_
24 #define WRTDEVICEAPIS_ACCELEROMETER_EVENT_ACCELERATION_CHANGED_H_
25
26 #include <dpl/shared_ptr.h>
27 #include <Commons/IEvent.h>
28 #include <Commons/ListenerEvent.h>
29 #include <Commons/ListenerEventEmitter.h>
30 #include <Accelerometer/AccelerationProperties.h>
31
32 namespace WrtDeviceApis {
33 namespace Accelerometer {
34 namespace Api {
35
36 class EventAccelerationChanged :
37     public Commons::ListenerEvent<EventAccelerationChanged>
38 {
39   private:
40     AccelerationProperties m_props;
41
42   public:
43     AccelerationProperties getAccelerationProperties() const
44     {
45         return m_props;
46     }
47     void setAccelerationProperties(const AccelerationProperties &props)
48     {
49         m_props = props;
50     }
51
52     EventAccelerationChanged()
53     {
54     }
55 };
56
57 typedef DPL::SharedPtr<EventAccelerationChanged> EventAccelerationChangedPtr;
58 typedef Commons::ListenerEventEmitter<EventAccelerationChanged>
59             EventAccelerationChangedEmitter;
60 typedef DPL::SharedPtr<EventAccelerationChangedEmitter>
61             EventAccelerationChangedEmitterPtr;
62 } // Accelerometer
63 } // Api
64 } // WrtDeviceApis
65
66 #endif //WRTDEVICEAPIS_ACCELEROMETER_EVENT_ACCELERATION_CHANGED_H_