ICU 54.1  54.1
unumsys.h
Go to the documentation of this file.
1 /*
2 *****************************************************************************************
3 * Copyright (C) 2013-2014, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 *****************************************************************************************
6 */
7 
8 #ifndef UNUMSYS_H
9 #define UNUMSYS_H
10 
11 #include "unicode/utypes.h"
12 
13 #if !UCONFIG_NO_FORMATTING
14 
15 #include "unicode/uenum.h"
16 #include "unicode/localpointer.h"
17 
41 struct UNumberingSystem;
55 U_STABLE UNumberingSystem * U_EXPORT2
56 unumsys_open(const char *locale, UErrorCode *status);
57 
76 U_STABLE UNumberingSystem * U_EXPORT2
77 unumsys_openByName(const char *name, UErrorCode *status);
78 
84 U_STABLE void U_EXPORT2
86 
87 #if U_SHOW_CPLUSPLUS_API
89 
99 
101 #endif
102 
111 U_STABLE UEnumeration * U_EXPORT2
113 
123 U_STABLE const char * U_EXPORT2
124 unumsys_getName(const UNumberingSystem *unumsys);
125 
134 U_STABLE UBool U_EXPORT2
136 
145 U_STABLE int32_t U_EXPORT2
146 unumsys_getRadix(const UNumberingSystem *unumsys);
147 
164 U_STABLE int32_t U_EXPORT2
165 unumsys_getDescription(const UNumberingSystem *unumsys, UChar *result,
166  int32_t resultLength, UErrorCode *status);
167 
168 #endif /* #if !UCONFIG_NO_FORMATTING */
169 
170 #endif
const char * unumsys_getName(const UNumberingSystem *unumsys)
Returns the name of the specified UNumberingSystem object (if it is one of the predefined names known...
UNumberingSystem * unumsys_open(const char *locale, UErrorCode *status)
Opens a UNumberingSystem object using the default numbering system for the specified locale...
struct UEnumeration UEnumeration
structure representing an enumeration object instance
Definition: uenum.h:39
int32_t unumsys_getDescription(const UNumberingSystem *unumsys, UChar *result, int32_t resultLength, UErrorCode *status)
Get the description string of the specified UNumberingSystem object.
UBool unumsys_isAlgorithmic(const UNumberingSystem *unumsys)
Returns whether the given UNumberingSystem object is for an algorithmic (not purely positional) syste...
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
Definition: uversion.h:129
#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction)
"Smart pointer" definition macro, deletes objects via the closeFunction.
Definition: localpointer.h:290
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
UEnumeration * unumsys_openAvailableNames(UErrorCode *status)
Returns an enumeration over the names of all of the predefined numbering systems known to ICU...
uint16_t UChar
Define UChar to be UCHAR_TYPE, if that is #defined (for example, to char16_t), or wchar_t if that is ...
Definition: umachine.h:312
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition: uversion.h:130
"Smart pointer" class, closes a UNumberingSystem via unumsys_close().
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers...
Definition: utypes.h:476
void unumsys_close(UNumberingSystem *unumsys)
Close a UNumberingSystem object.
C API: String Enumeration.
UNumberingSystem * unumsys_openByName(const char *name, UErrorCode *status)
Opens a UNumberingSystem object using the name of one of the predefined numbering systems specified b...
Basic definitions for ICU, for both C and C++ APIs.
struct UNumberingSystem UNumberingSystem
C typedef for struct UNumberingSystem.
Definition: unumsys.h:42
int32_t unumsys_getRadix(const UNumberingSystem *unumsys)
Returns the radix of the specified UNumberingSystem object.
#define U_STABLE
This is used to declare a function as a stable public ICU C API.
Definition: umachine.h:109
int8_t UBool
The ICU boolean type.
Definition: umachine.h:234