version bump
[profile/ivi/wrt-plugins-ivi.git] / EventVehiclePropertyChanged.h
1 #ifndef TIZENAPIS_API_VEHICLE_EVENT_PROPERTY_CHANGED_H_
2 #define TIZENAPIS_API_VEHICLE_EVENT_PROPERTY_CHANGED_H_
3
4 #include <Commons/IEvent.h>
5 #include <dpl/shared_ptr.h>
6
7 namespace DeviceAPI {
8 namespace Vehicle {
9
10 class EventVehiclePropertyChanged : public WrtDeviceApis::Commons::IEvent<EventVehiclePropertyChanged>
11 {
12 private:
13         /* parameter */
14         std::string m_contextId;
15
16 public:
17         void setContextId(std::string contextId)
18         {
19                 m_contextId = contextId;
20         }
21
22         std::string getContextId() const
23         {
24                 return m_contextId;
25         }
26
27         EventVehiclePropertyChanged()
28         {
29         }
30 };
31
32 typedef DPL::SharedPtr<EventVehiclePropertyChanged> EventVehiclePropertyChangedPtr;
33
34 } // Application
35 } // DeviceAPI
36
37 #endif