Merge "remove unnecessary implementations" into tizen_2.1
[platform/framework/native/appfw.git] / inc / FBaseUtil.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                FBaseUtil.h
20  * @brief               This is the header file for the %Utility namespace.
21  *
22  * This header file contains the declarations of the %Utility namespace.
23  *
24  */
25 #ifndef _FBASE_UTIL_H_
26 #define _FBASE_UTIL_H_
27
28 // Math
29 #include <FBaseUtilMath.h>
30
31 // StringTokenizer
32 #include <FBaseUtilStringTokenizer.h>
33
34 // StringUtil
35 #include <FBaseUtilStringUtil.h>
36
37 // Uri
38 #include <FBaseUtilUri.h>
39
40 // Inflator
41 #include <FBaseUtilInflator.h>
42
43 // Deflator
44 #include <FBaseUtilDeflator.h>
45
46 // UrlEncoder
47 #include <FBaseUtilUrlEncoder.h>
48
49 // Url Decoder
50 #include <FBaseUtilUrlDecoder.h>
51
52 // FileZip
53 #include <FBaseUtilFileZipper.h>
54
55 // FileUnzip
56 #include <FBaseUtilFileUnzipper.h>
57
58 // ZipEntry
59 #include <FBaseUtilZipEntry.h>
60
61 // Regular expression
62 #include <FBaseUtilRegularExpression.h>
63
64 // LinkInfo
65 #include <FBaseUtilLinkInfo.h>
66
67 //Scanner
68 #include <FBaseUtilScanner.h>
69
70 /**
71  * @namespace           Tizen::Base::Utility
72  * @brief                               This namespace contains classes for various utilities.
73  * @since 2.0
74  *
75  * @remarks     @b Header @b %file: @b \#include @b <FBase.h> @n
76  *                              @b Library : @b osp-appfw
77  *
78  * The %Utility namespace contains interfaces and classes that
79  * define various utilities of an object, such as Math and StringTokenizer.
80  * It also contains methods to perform some common functions needed by the applications, such as file zipping and URL encoding and decoding.
81  *
82  * For more information on the %Base::Utility namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/base/utility_namespace.htm">Utility</a>.
83  *
84  * The following diagram illustrates the relationships between the classes belonging to the %Utility namespace.
85  * @image html base_utility_namespace_classdiagram.png
86  *
87  **/
88
89 namespace Tizen { namespace Base { namespace Utility
90 {
91
92 }}} // Tizen::Base::Utility
93
94 #endif // _FBASE_UTIL_H_