sync with tizen_2.0
[platform/framework/native/appfw.git] / src / system / FSysBattery.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 /**
20  * @file                FSysBattery.cpp
21  * @brief               This is the implementation file for Battery class.
22  */
23
24 #include <FSysBattery.h>
25 #include <FSysDeviceManager.h>
26
27 #include <FBaseSysLog.h>
28 #include <FBase_NativeError.h>
29 #include <FSec_AccessController.h>
30 #include "FSys_BatteryImpl.h"
31
32 using namespace Tizen::Base;
33 using namespace Tizen::Security;
34
35 namespace Tizen { namespace System
36 {
37
38 Battery::Battery(void)
39 {
40 }
41
42 Battery::~Battery(void)
43 {
44 }
45
46 result
47 Battery::IsCharging(bool& charging)
48 {
49         return _BatteryImpl::IsCharging(charging);
50 }
51
52 result
53 Battery::GetCurrentLevelInPercentage(int& level)
54 {
55         return _BatteryImpl::GetCurrentLevelInPercentage(level);
56 }
57
58 result
59 Battery::GetCurrentLevel(BatteryLevel& level)
60 {
61         return _BatteryImpl::GetCurrentLevel(level);
62 }
63
64 } } // Tizen::System