Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_mobile / Commons / TypesDeclaration.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 WRTDEVICEAPIS_COMMONS_TYPES_DECLARATION_
17 #define WRTDEVICEAPIS_COMMONS_TYPES_DECLARATION_
18
19 #include <string>
20 #include <vector>
21
22 namespace WrtDeviceApis {
23 namespace Commons {
24 struct AceFeature
25 {
26     AceFeature(const std::string& featName) : name(featName) {}
27     std::string name;
28 };
29
30 typedef std::vector <AceFeature> AceFeatures;
31
32 struct AceDeviceCapParam
33 {
34     AceDeviceCapParam(const std::string& parName,
35                       const std::string& parVal) : name(parName),
36         value(parVal)
37     {}
38
39     std::string name;
40     std::string value;
41 };
42
43 typedef std::vector <AceDeviceCapParam> AceDeviceCapParams;
44
45 struct AceDeviceCapability
46 {
47     AceDeviceCapability() {}
48     AceDeviceCapability(const std::string& name,
49                         const AceDeviceCapParams& params) :
50         devCapName(name),
51         devCapParams(params)
52     {}
53
54     std::string devCapName;
55     AceDeviceCapParams devCapParams;
56 };
57
58 typedef std::vector <AceDeviceCapability> AceDeviceCaps;
59
60 struct AceFunction
61 {
62     std::string name;
63     AceFeatures features;
64     AceDeviceCaps deviceCapabilities;
65 };
66 } // namespace Commons
67 } // namespace WrtDeviceApis
68
69 #endif