tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / DEPRACATED / FeatureLoader / EventLoadFeature.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 #ifndef _IEVENT_LOAD_FEATURE_
17 #define _IEVENT_LOAD_FEATURE_
18
19 /*
20  * @author Bartlomiej Grzelewski (b.grzelewski@samsung.com)
21  */
22
23 #include <commons/IEvent.h>
24 #include <dpl/shared_ptr.h>
25
26 namespace WrtPlugins {
27 namespace Api {
28 class EventLoadFeature : public WrtPlugins::Platform::IEvent<EventLoadFeature>
29 {
30   public:
31     explicit EventLoadFeature(const std::string &feature) :
32         m_success(false),
33         m_feature(feature),
34         m_object(0)
35     {
36     }
37
38     ~EventLoadFeature()
39     {
40         LogDebug(__FUNCTION__);
41     }
42
43     const std::string getFeature() const
44     {
45         return m_feature;
46     }
47
48     const bool isSuccess() const
49     {
50         return m_success;
51     }
52
53     void setStatus(bool status)
54     {
55         m_success = status;
56     }
57
58     void* getObject() const
59     {
60         return m_object;
61     }
62
63     void setObject(void* jsObject)
64     {
65         m_object = jsObject;
66     }
67
68     virtual void clearOnCancel()
69     {
70     }
71   private:
72     bool m_success;
73     std::string m_feature;
74     void       *m_object;
75 };
76
77 typedef DPL::SharedPtr<EventLoadFeature> EventLoadFeaturePtr;
78 } // namespace Api
79 } // namespace WrtPlugins
80
81 #endif // _IEVENT_LOAD_FEATURE_