b58d6bb778390fc6153a6c543cad676e3729ceab
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Application / ApplicationEvent.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 #ifndef TIZENAPIS_API_APPLICATION_EVENT_H_
19 #define TIZENAPIS_API_APPLICATION_EVENT_H_
20
21 #include <string>
22 #include <vector>
23 #include <dpl/log/log.h>
24 #include <dpl/shared_ptr.h>
25 #include "ApplicationInformation.h"
26
27
28 #define APPLICATON_EVENT_CODE_INSTALLED "INSTALLED"
29 #define APPLICATON_EVENT_CODE_UNINSTALLED "UNINSTALLED"
30 #define APPLICATON_EVENT_CODE_UPDATED "UPDATED"
31
32
33 namespace TizenApis {
34 namespace Api {
35 namespace Application {
36
37 class ApplicationEvent;
38 typedef DPL::SharedPtr<ApplicationEvent> ApplicationEventPtr;
39
40 class ApplicationEvent
41 {
42   public:
43     ApplicationEvent();
44     ~ApplicationEvent();
45
46         std::string getCode() const;
47         void setCode(const std::string code );
48
49         ApplicationInformationPtr getApplicationInformation() const;
50         void setApplicationInformation(const ApplicationInformationPtr &appinfo);
51         
52   private:
53     ApplicationInformationPtr m_appinfo;
54         std::string m_code;
55 };
56
57 }
58 }
59 }
60
61 #endif