2f7f2c8c6b7885cb1b5ae758063d1db982de901b
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Application / EventInstalledApplicationChanged.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 #ifndef TIZENAPIS_API_EVENT_INSTALLED_APPLICATION_CHANGED_H_
18 #define TIZENAPIS_API_EVENT_INSTALLED_APPLICATION_CHANGED_H_
19
20 #include <Commons/IEvent.h>
21 #include <dpl/shared_ptr.h>
22 #include <Commons/ListenerEvent.h>
23 #include <Commons/ListenerEventEmitter.h>
24 #include "ApplicationInformation.h"
25 #include "ApplicationEvent.h"
26
27 namespace TizenApis {
28 namespace Api {
29 namespace Application {
30
31 class EventInstalledApplicationChanged: public WrtDeviceApis::Commons::ListenerEvent<EventInstalledApplicationChanged>
32 {
33 private:
34         ApplicationInformationPtr m_appinfo;
35         std::string m_eventCode;
36 public:
37
38         void setApplicationInformation(const ApplicationInformationPtr &appinfo)
39         {
40                 m_appinfo = appinfo;
41         }
42
43         ApplicationInformationPtr getApplicationInformation() const 
44         {
45                 return m_appinfo;
46         }
47
48         void setEventCode(std::string code)
49         {
50                 m_eventCode = code;
51         }
52
53         std::string getEventCode() const
54         {
55                 return m_eventCode;
56         }
57
58         EventInstalledApplicationChanged() 
59         {
60         }
61 };
62
63 typedef DPL::SharedPtr<EventInstalledApplicationChanged> EventInstalledApplicationChangedPtr;
64 typedef WrtDeviceApis::Commons::ListenerEventEmitter<EventInstalledApplicationChanged> EventInstalledApplicationChangedEmitter;
65 typedef DPL::SharedPtr<EventInstalledApplicationChangedEmitter> EventInstalledApplicationChangedEmitterPtr;
66
67 } // Application
68 } // Api
69 } // TizenApis
70
71 #endif