sync with tizen_2.0
[platform/framework/native/appfw.git] / inc / FSystem.h
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        FSystem.h
20  * @brief       This is the header file for the %System namespace.
21  *
22  * This header file contains the declarations of the %System namespace.
23  *
24  */
25
26 #ifndef _FSYSTEM_H_
27 #define _FSYSTEM_H_
28
29 // Alarm
30 #include <FSysAlarm.h>
31 #include <FSysIAlarmEventListener.h>
32
33 // SystemTime
34 #include <FSysSystemTime.h>
35
36 // Vibrator
37 #include <FSysVibrator.h>
38
39 // System Information
40 #include <FSysSystemInfo.h>
41
42 // Runtime Information
43 #include <FSysRuntimeInfo.h>
44 #include <FSysIRuntimeInfoGetIntAsyncResultListener.h>
45 #include <FSysIRuntimeInfoGetLonglongAsyncResultListener.h>
46
47 // Setting Information
48 #include <FSysSettingInfo.h>
49 #include <FSysISettingEventListener.h>
50 #include <FSysISettingInfoSetValueAsyncResultListener.h>
51
52 // Power Manager
53 #include <FSysIBatteryEventListener.h>
54 #include <FSysIScreenEventListener.h>
55 #include <FSysIChargingEventListener.h>
56 #include <FSysPowerManager.h>
57
58 // Device State
59 #include <FSysDeviceManager.h>
60 #include <FSysIDeviceEventListener.h>
61
62 // Environment
63 #include <FSysEnvironment.h>
64
65 namespace Tizen
66 {
67 /**
68  * @namespace   Tizen::System
69  * @brief       This namespace contains classes and interfaces for %System.
70  * @since       2.0
71  *
72  * @remarks    @b Header @b %file: @b \#include @b <FSystem.h> @n
73  *                              @b Library : @b osp-appfw
74  *
75  * The %System namespace provides system management features, such as system time, alarm, vibrator, power, and device management.
76  * It also provides the system, setting, and runtime information.
77  *
78  * For more information on the %System namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/system/system_namespace.htm">System Guide</a>.
79  *
80  * The following diagram illustrates the relationships between the classes belonging to the %System namespace.
81  *
82  * @image html system_namespace_classdiagram.png
83  *
84  */
85 namespace System
86 {}; // System
87 }; // Tizen
88
89 #endif // _FSYSTEM_H_