]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/unicode/docmain.h
ICU-66108.tar.gz
[apple/icu.git] / icuSources / common / unicode / docmain.h
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
b75a7d8f
A
3/********************************************************************
4 * COPYRIGHT:
51004dcb 5 * Copyright (c) 1997-2012, International Business Machines Corporation and
b75a7d8f
A
6 * others. All Rights Reserved.
7 *
8 * FILE NAME: DOCMAIN.h
9 *
10 * Date Name Description
11 * 12/11/2000 Ram Creation.
12 */
13
51004dcb
A
14/**
15 * \file
16 * \brief (Non API- contains Doxygen definitions)
17 *
18 * This file contains documentation for Doxygen and doesnot have
b75a7d8f
A
19 * any significance with respect to C or C++ API
20 */
21
22/*! \mainpage
23 *
374ca955 24 * \section API API Reference Usage
b75a7d8f
A
25 *
26 * <h3>C++ Programmers:</h3>
374ca955 27 * <p>Use <a href="hierarchy.html">Class Hierarchy</a> or <a href="classes.html"> Alphabetical List </a>
b75a7d8f
A
28 * or <a href="annotated.html"> Compound List</a>
29 * to find the class you are interested in. For example, to find BreakIterator,
30 * you can go to the <a href="classes.html"> Alphabetical List</a>, then click on
31 * "BreakIterator". Once you are at the class, you will find an inheritance
32 * chart, a list of the public members, a detailed description of the class,
33 * then detailed member descriptions.</p>
34 *
35 * <h3>C Programmers:</h3>
3d1f044b 36 * <p>Use <a href="#Module">Module List</a> or <a href="globals_u.html">File Members</a>
b75a7d8f
A
37 * to find a list of all the functions and constants.
38 * For example, to find BreakIterator functions you would click on
39 * <a href="files.html"> File List</a>,
40 * then find "ubrk.h" and click on it. You will find descriptions of Defines,
41 * Typedefs, Enumerations, and Functions, with detailed descriptions below.
42 * If you want to find a specific function, such as ubrk_next(), then click
43 * first on <a href="globals.html"> File Members</a>, then use your browser
44 * Find dialog to search for "ubrk_next()".</p>
45 *
46 *
47 * <h3>API References for Previous Releases</h3>
73c04bcf
A
48 * <p>The API References for each release of ICU are also available as
49 * a zip file from the ICU
4388f060 50 * <a href="http://site.icu-project.org/download">download page</a>.</p>
b75a7d8f
A
51 *
52 * <hr>
53 *
54 * <h2>Architecture (User's Guide)</h2>
55 * <ul>
4388f060
A
56 * <li><a href="http://userguide.icu-project.org/">Introduction</a></li>
57 * <li><a href="http://userguide.icu-project.org/i18n">Internationalization</a></li>
58 * <li><a href="http://userguide.icu-project.org/design">Locale Model, Multithreading, Error Handling, etc.</a></li>
59 * <li><a href="http://userguide.icu-project.org/conversion">Conversion</a></li>
b75a7d8f
A
60 * </ul>
61 *
62 * <hr>
374ca955 63 *\htmlonly <h2><a NAME="Module">Module List</a></h2> \endhtmlonly
b75a7d8f
A
64 * <table border="1" cols="3" align="center">
65 * <tr>
66 * <td><strong>Module Name</strong></td>
67 * <td><strong>C</strong></td>
68 * <td><strong>C++</strong></td>
69 * </tr>
70 * <tr>
71 * <td>Basic Types and Constants</td>
72 * <td>utypes.h</td>
73 * <td>utypes.h</td>
74 * </tr>
75 * <tr>
76 * <td>Strings and Character Iteration</td>
4388f060 77 * <td>ustring.h, utf8.h, utf16.h, UText, UCharIterator</td>
51004dcb 78 * <td>icu::UnicodeString, icu::CharacterIterator, icu::Appendable, icu::StringPiece,icu::ByteSink</td>
b75a7d8f
A
79 * </tr>
80 * <tr>
51004dcb 81 * <td>Unicode Character<br/>Properties and Names</td>
4388f060
A
82 * <td>uchar.h, uscript.h</td>
83 * <td>C API</td>
84 * </tr>
85 * <tr>
86 * <td>Sets of Unicode Code Points and Strings</td>
87 * <td>uset.h</td>
51004dcb 88 * <td>icu::UnicodeSet</td>
4388f060
A
89 * </tr>
90 * <tr>
3d1f044b
A
91 * <td>Maps from Unicode Code Points to Integer Values</td>
92 * <td>ucptrie.h, umutablecptrie.h</td>
93 * <td>C API</td>
94 * </tr>
95 * <tr>
4388f060
A
96 * <td>Maps from Strings to Integer Values</td>
97 * <td>(no C API)</td>
51004dcb 98 * <td>icu::BytesTrie, icu::UCharsTrie</td>
b75a7d8f
A
99 * </tr>
100 * <tr>
101 * <td>Codepage Conversion</td>
340931cb 102 * <td>ucnv.h, ucnvsel.h</td>
4388f060 103 * <td>C API</td>
b75a7d8f
A
104 * </tr>
105 * <tr>
f3c0d7a5
A
106 * <td>Codepage Detection</td>
107 * <td>ucsdet.h</td>
108 * <td>C API</td>
109 * </tr>
110 * <tr>
b75a7d8f 111 * <td>Unicode Text Compression</td>
51004dcb 112 * <td>ucnv.h<br/>(encoding name "SCSU" or "BOCU-1")</td>
4388f060 113 * <td>C API</td>
b75a7d8f
A
114 * </tr>
115 * <tr>
116 * <td>Locales </td>
117 * <td>uloc.h</a></td>
340931cb 118 * <td>icu::Locale, icu::LocaleBuilder, icu::LocaleMatcher</td>
b75a7d8f
A
119 * </tr>
120 * <tr>
121 * <td>Resource Bundles</td>
122 * <td>ures.h</td>
51004dcb 123 * <td>icu::ResourceBundle</td>
b75a7d8f
A
124 * </tr>
125 * <tr>
126 * <td>Normalization</td>
4388f060 127 * <td>unorm2.h</td>
51004dcb 128 * <td>icu::Normalizer2</td>
b75a7d8f
A
129 * </tr>
130 * <tr>
131 * <td>Calendars</td>
132 * <td>ucal.h</td>
51004dcb 133 * <td>icu::Calendar</td>
b75a7d8f
A
134 * </tr>
135 * <tr>
136 * <td>Date and Time Formatting</td>
137 * <td>udat.h</td>
51004dcb 138 * <td>icu::DateFormat</td>
b75a7d8f
A
139 * </tr>
140 * <tr>
141 * <td>Message Formatting</td>
142 * <td>umsg.h</td>
51004dcb 143 * <td>icu::MessageFormat</td>
b75a7d8f
A
144 * </tr>
145 * <tr>
3d1f044b 146 * <td>Number Formatting<br/>(includes currency and unit formatting)</td>
0f5d89e8
A
147 * <td>unumberformatter.h, unum.h</td>
148 * <td>icu::number::NumberFormatter (ICU 60+) or icu::NumberFormat (older versions)</td>
b75a7d8f
A
149 * </tr>
150 * <tr>
3d1f044b
A
151 * <td>Number Range Formatting<br />(includes currency and unit ranges)</td>
152 * <td>(no C API)</td>
153 * <td>icu::number::NumberRangeFormatter</td>
154 * </tr>
155 * <tr>
51004dcb
A
156 * <td>Number Spellout<br/>(Rule Based Number Formatting)</td>
157 * <td>unum.h<br/>(use UNUM_SPELLOUT)</td>
158 * <td>icu::RuleBasedNumberFormat</td>
b75a7d8f
A
159 * </tr>
160 * <tr>
51004dcb 161 * <td>Text Transformation<br/>(Transliteration)</td>
b75a7d8f 162 * <td>utrans.h</td>
51004dcb 163 * <td>icu::Transliterator</td>
b75a7d8f
A
164 * </tr>
165 * <tr>
166 * <td>Bidirectional Algorithm</td>
f3c0d7a5 167 * <td>ubidi.h, ubiditransform.h</td>
4388f060 168 * <td>C API</td>
b75a7d8f
A
169 * </tr>
170 * <tr>
171 * <td>Arabic Shaping</td>
172 * <td>ushape.h</td>
4388f060 173 * <td>C API</td>
b75a7d8f
A
174 * </tr>
175 * <tr>
176 * <td>Collation</td>
177 * <td>ucol.h</td>
51004dcb 178 * <td>icu::Collator</td>
b75a7d8f
A
179 * </tr>
180 * <tr>
181 * <td>String Searching</td>
182 * <td>usearch.h</td>
51004dcb 183 * <td>icu::StringSearch</td>
b75a7d8f
A
184 * </tr>
185 * <tr>
51004dcb 186 * <td>Index Characters/<br/>Bucketing for Sorted Lists</td>
4388f060 187 * <td>(no C API)</td>
51004dcb 188 * <td>icu::AlphabeticIndex</td>
b75a7d8f
A
189 * </tr>
190 * <tr>
51004dcb 191 * <td>Text Boundary Analysis<br/>(Break Iteration)</td>
4388f060 192 * <td>ubrk.h</td>
51004dcb 193 * <td>icu::BreakIterator</td>
b75a7d8f
A
194 * </tr>
195 * <tr>
196 * <td>Regular Expressions</td>
374ca955 197 * <td>uregex.h</td>
51004dcb 198 * <td>icu::RegexPattern, icu::RegexMatcher</td>
b75a7d8f 199 * </tr>
374ca955
A
200 * <tr>
201 * <td>StringPrep</td>
202 * <td>usprep.h</td>
4388f060 203 * <td>C API</td>
374ca955
A
204 * </tr>
205 * <tr>
51004dcb 206 * <td>International Domain Names in Applications:<br/>
4388f060 207 * UTS #46 in C/C++, IDNA2003 only via C API</td>
374ca955 208 * <td>uidna.h</td>
4388f060 209 * <td>idna.h</td>
374ca955
A
210 * </tr>
211 * <tr>
729e4ab9
A
212 * <td>Identifier Spoofing & Confusability</td>
213 * <td>uspoof.h</td>
4388f060 214 * <td>C API</td>
729e4ab9 215 * <tr>
374ca955
A
216 * <td>Universal Time Scale</td>
217 * <td>utmscale.h</td>
4388f060 218 * <td>C API</td>
374ca955 219 * </tr>
73c04bcf 220 * <tr>
3d1f044b
A
221 * <td>Paragraph Layout / Complex Text Layout</td>
222 * <td>playout.h</td>
223 * <td>icu::ParagraphLayout</td>
73c04bcf
A
224 * </tr>
225 * <tr>
226 * <td>ICU I/O</td>
227 * <td>ustdio.h</td>
228 * <td>ustream.h</td>
229 * </tr>
b75a7d8f 230 * </table>
729e4ab9 231 * <i>This main page is generated from docmain.h</i>
b75a7d8f 232 */