sync with tizen_2.0
[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 <FIoIMessagePortListener.h>
42 #include <FIoSerialPort.h>
43 #include <FIoIDbEnumerator.h>
44 #include <FIoIFileEventListener.h>
45 #include <FIoISerialPortEventListener.h>
46
47 /**
48  * @namespace   Tizen::Io
49  * @brief               This namespace contains classes and interfaces for performing basic I/O operations.
50  * @since               2.0
51  *
52  * @remarks     @b Header @b %file: @b \#include @b <FIo.h> @n
53  *                              @b Library : @b osp-appfw
54  *
55  * The %Io namespace allows applications to input/output data to/from file systems and other programs and process it.
56  * Thus, the %Io namespace is an interface between the system and the application.
57  * The %Io namespace provides classes and methods for managing files, directories, registries, databases, channels, and serial port communication.
58  * @n
59  * For more information on the %Io namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/io/io_namespace.htm">Io Guide</a>.
60  *
61  * The following diagram illustrates the relationships between the classes belonging to the %Io namespace.
62  *  @image html io_namespace_classdiagram.png
63  */
64
65 namespace Tizen
66 {
67 namespace Io
68 {
69
70 }
71 }
72
73 #endif // _FIO_H_
74