tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / DEPRACATED / Geolocation / EventPositionChanged.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      Wojciech Bielawski (w.bielawski@samsung.com)
18  */
19
20 #ifndef WRTPLUGINS_API_GEOLOCATION_EVENT_POSITION_CHANGED_H_
21 #define WRTPLUGINS_API_GEOLOCATION_EVENT_POSITION_CHANGED_H_
22
23 #include "PositionProperties.h"
24 #include <commons/IEvent.h>
25 #include <dpl/shared_ptr.h>
26 #include <platform/commons/ListenerEvent.h>
27 #include <platform/commons/ListenerEventEmitter.h>
28
29 namespace WrtPlugins {
30 namespace Api {
31 namespace Geolocation {
32 class EventPositionChanged : public Platform::ListenerEvent<
33         EventPositionChanged>
34 {
35   private:
36     PositionProperties m_props;
37
38   public:
39     PositionProperties getPositionProperties() const
40     {
41         return m_props;
42     }
43     void setPositionProperties(const PositionProperties &props)
44     {
45         m_props = props;
46     }
47
48     EventPositionChanged()
49     {
50     }
51 };
52
53 typedef DPL::SharedPtr<EventPositionChanged> EventPositionChangedPtr;
54 typedef Platform::ListenerEventEmitter<EventPositionChanged>
55 EventPositionChangedEmitter;
56 typedef DPL::SharedPtr<EventPositionChangedEmitter>
57 EventPositionChangedEmitterPtr;
58 } // Geolocation
59 } // Api
60 } // WrtPlugins
61
62 #endif //WRTPLUGINS_API_GEOLOCATION_EVENT_POSITION_CHANGED_H_