N_SE-35056 - When ticks is negative, GetAPIs didn't manage this case
[platform/framework/native/appfw.git] / inc / FText.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                FText.h
20  * @brief               This is the header file for the %Text namespace.
21  *
22  * This header file contains the declarations of the %Text namespace.
23  */
24
25 #ifndef _FTEXT_H_
26 #define _FTEXT_H_
27
28 #include <FTextEncoding.h>
29 #include <FTextUtf8Encoding.h>
30 #include <FTextAsciiEncoding.h>
31 #include <FTextLatin1Encoding.h>
32 #include <FTextGsmEncoding.h>
33 #include <FTextUcs2Encoding.h>
34 #include <FTextEncoder.h>
35 #include <FTextDecoder.h>
36 #include <FTextUtf8Encoder.h>
37 #include <FTextUtf8Decoder.h>
38
39
40 /**
41  * @namespace   Tizen::Text
42  * @brief                       This namespace contains classes that encode and decode characters.
43  *
44  * @since                       2.0
45  *
46  * @remarks             @b Header @b %file: @b \#include @b <FText.h> @n
47  *                                              @b Library: @b osp-appfw
48  *
49  * The %Text namespace contains the Encoding class, which is the base class for encoding and decoding many character encodings, such as UTF-8, UCS-2, Latin-1, GSM, and ASCII. It also contains the Decoder and Encoder classes for converting text blocks. The main purpose of this namespace is to support inter-
50  * operability between the various existing languages and scripts.
51  * %Text is a data consisting of a sequence of characters.
52  * It is also defined as a series of characters that can be displayed on a
53  * display terminal or printed on paper for human reading.
54  *
55  * For more information on the %Text namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/text/text.htm">Text Guide</a>.
56  *
57  * The following diagram illustrates the relationships between the classes belonging to the %Text namespace.
58  * @image html text_using_the_apis_classdiagram.png
59  *
60  *
61  *
62  */
63
64 namespace Tizen { namespace Text
65 {
66
67 }} // Tizen::Text
68
69 #endif //_FTEXT_H_