tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / DEPRACATED / FeatureLoader / FeatureManager.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 _SLP20_FEATUREMANAGER_H_
17 #define _SLP20_FEATUREMANAGER_H_
18
19 /*
20  * @author Bartlomiej Grzelewski (b.grzelewski@samsung.com)
21  */
22
23 #include "API/FeatureLoader/IFeatureManager.h"
24
25 namespace WrtPlugins {
26 namespace Platform {
27 class FeatureManager :
28     public Api::IFeatureManager
29 {
30   public:
31     FeatureManager()
32     {
33     }
34     virtual ~FeatureManager()
35     {
36     }
37     static void platformCallback(int,
38             void* object,
39             void* userParam);
40   protected:
41     virtual void OnRequestReceived(const Api::EventLoadFeaturePtr &event);
42   private:
43     struct EventWrapper
44     {
45         EventWrapper(FeatureManager *featureManager,
46                 const Api::EventLoadFeaturePtr &event) :
47             m_featureManager(featureManager),
48             m_event(event)
49         {
50         }
51
52         ~EventWrapper()
53         {
54         }
55
56         FeatureManager *m_featureManager;
57         Api::EventLoadFeaturePtr m_event;
58     };
59 };
60 } // namespace Platform
61 } // namespace WrtPlugins
62
63 #endif // _SLP20_FEATUREMANAGER_H_