sync with master
[platform/framework/native/appfw.git] / inc / FIo.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        FIo.h
20  * @brief       This is the header file for the Tizen::Io namespace.
21  *
22  * This header file contains the declarations of the Tizen::Io namespace.
23  */
24
25 #ifndef _FIO_H_
26 #define _FIO_H_
27
28 #include <FIoFile.h>
29 #include <FIoDirectory.h>
30 #include <FIoDirEntry.h>
31 #include <FIoDirEnumerator.h>
32 #include <FIoRegistry.h>
33 #include <FIoDbTypes.h>
34 #include <FIoDatabase.h>
35 #include <FIoDbStatement.h>
36 #include <FIoDbEnumerator.h>
37 #include <FIoSqlStatementBuilder.h>
38 #include <FIoFileEventManager.h>
39 #include <FIoChannel.h>
40 #include <FIoMessagePortManager.h>
41 #include <FIoSerialPort.h>
42 #include <FIoMmcStorageManager.h>
43 #include <FIoIDbEnumerator.h>
44 #include <FIoIFileEventListener.h>
45 #include <FIoIMessagePortListener.h>
46 #include <FIoISerialPortEventListener.h>
47 #include <FIoIMmcStorageMountListener.h>
48 #include <FIoIMmcStorageFormatListener.h>
49 #include <FIoFileLock.h>
50
51 /**
52  * @namespace   Tizen::Io
53  * @brief               This namespace contains classes and interfaces for performing basic I/O operations.
54  * @since               2.0
55  *
56  * @remarks     @b Header @b %file: @b \#include @b <FIo.h> @n
57  *                              @b Library : @b osp-appfw
58  *
59  * The %Io namespace allows applications to input/output data to/from file systems and other programs and process it.
60  * Thus, the %Io namespace is an interface between the system and the application.
61  * The %Io namespace provides classes and methods for managing files, directories, registries, databases, channels, and serial port communication.
62  * @n
63  * For more information on the %Io namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/io/io_namespace.htm">Io Guide</a>.
64  *
65  * The following diagram illustrates the relationships between the classes belonging to the %Io namespace.
66  *  @image html io_namespace_classdiagram.png
67  */
68
69 namespace Tizen
70 {
71 namespace Io
72 {
73
74 }
75 }
76
77 #endif // _FIO_H_
78