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