ICU-5009 Fix the documentation output for doxygen.
X-SVN-Rev: 19007
This commit is contained in:
parent
b6ce118952
commit
5e3b816f7a
@ -1,7 +1,7 @@
|
||||
/*
|
||||
********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1996-2005, International Business Machines Corporation and
|
||||
* Copyright (c) 1996-2006, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************
|
||||
*/
|
||||
@ -29,6 +29,9 @@ typedef struct UCharIterator UCharIterator; /**< C typedef for struct UCharItera
|
||||
|
||||
U_NAMESPACE_BEGIN
|
||||
/**
|
||||
* The Normalizer class supports the standard normalization forms described in
|
||||
* <a href="http://www.unicode.org/unicode/reports/tr15/" target="unicode">
|
||||
* Unicode Standard Annex #15: Unicode Normalization Forms
|
||||
*
|
||||
* The Normalizer class consists of two parts:
|
||||
* - static functions that normalize strings or test if strings are normalized
|
||||
|
@ -22,7 +22,7 @@
|
||||
*
|
||||
* @stable ICU 2.4
|
||||
*/
|
||||
#if defined(U_INT64_T_UNAVAILABLE) || UCONFIG_NO_FORMATTING
|
||||
#if UCONFIG_NO_FORMATTING
|
||||
#define U_HAVE_RBNF 0
|
||||
#else
|
||||
#define U_HAVE_RBNF 1
|
||||
@ -57,16 +57,13 @@ class Collator;
|
||||
#endif
|
||||
|
||||
/**
|
||||
*
|
||||
* <h2> Rule Based Number Format C++ API </h2>
|
||||
*
|
||||
* <p>A class that formats numbers according to a set of rules. This number formatter is
|
||||
* The RuleBasedNumberFormat class formats numbers according to a set of rules. This number formatter is
|
||||
* typically used for spelling out numeric values in words (e.g., 25,3476 as
|
||||
* "twenty-five thousand three hundred seventy-six" or "vingt-cinq mille trois
|
||||
* cents soixante-seize" or
|
||||
* "fünfundzwanzigtausenddreihundertsechsundsiebzig"), but can also be used for
|
||||
* other complicated formatting tasks, such as formatting a number of seconds as hours,
|
||||
* minutes and seconds (e.g., 3,730 as "1:02:10").</p>
|
||||
* minutes and seconds (e.g., 3,730 as "1:02:10").
|
||||
*
|
||||
* <p>The resources contain three predefined formatters for each locale: spellout, which
|
||||
* spells out a value in words (123 is "one hundred twenty-three"); ordinal, which
|
||||
|
Loading…
Reference in New Issue
Block a user