Merge "Flow control for DataControl" into tizen_2.1
[platform/framework/native/appfw.git] / src / system / FSysRuntimeInfo.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FSysRuntimeInfo.cpp
20  * @brief               This is the implementation file for RuntimeInfo class.
21  *
22  *
23  * This file contains the implementation of RuntimeInfo class.
24  */
25
26 #include <FBaseSysLog.h>
27 #include <FSysRuntimeInfo.h>
28 #include <FSys_RuntimeInfoImpl.h>
29 #include <FSec_AccessController.h>
30
31 using namespace Tizen::Base;
32 using namespace Tizen::Security;
33
34 namespace Tizen { namespace System
35 {
36
37 RuntimeInfo::RuntimeInfo(void)
38         :__pRuntimeInfoImpl(null)
39 {
40 }
41
42 RuntimeInfo::~RuntimeInfo(void)
43 {
44 }
45
46 result
47 RuntimeInfo::GetValue(const String& key, String& value)
48 {
49         return _RuntimeInfoImpl::GetValue(key, value);
50 }
51
52 result
53 RuntimeInfo::GetValue(const String& key, int& value)
54 {
55         return _RuntimeInfoImpl::GetValue(key, value);
56 }
57
58 result
59 RuntimeInfo::GetValue(const String& key, long long& value)
60 {
61         return _RuntimeInfoImpl::GetValue(key, value);
62 }
63
64 result
65 RuntimeInfo::GetValue(const String& key, double& value)
66 {
67         return _RuntimeInfoImpl::GetValue(key, value);
68 }
69
70 result
71 RuntimeInfo::GetValue(const String& key, bool& value)
72 {
73         return _RuntimeInfoImpl::GetValue(key, value);
74 }
75
76 result
77 RuntimeInfo::GetValue(const String& key, UuId& value)
78 {
79         return _RuntimeInfoImpl::GetValue(key, value);
80 }
81
82 result
83 RuntimeInfo::GetValueAsync(const String& key, IRuntimeInfoGetIntAsyncResultListener* listener)
84 {
85         return _RuntimeInfoImpl::GetValueAsync(key, listener);
86 }
87
88 result
89 RuntimeInfo::GetValueAsync(const String& key, IRuntimeInfoGetLonglongAsyncResultListener* listener)
90 {
91         return _RuntimeInfoImpl::GetValueAsync(key, listener);
92 }
93
94 } } // Tizen::System