]>
Commit | Line | Data |
---|---|---|
2ca993e8 A |
1 | /* |
2 | ******************************************************************************** | |
3 | * Copyright (C) 2015, International Business Machines | |
4 | * Corporation and others. All Rights Reserved. | |
5 | ******************************************************************************** | |
6 | * | |
7 | * File decimalformatpatternimpl.h | |
8 | ******************************************************************************** | |
9 | */ | |
10 | ||
11 | #ifndef DECIMALFORMATPATTERNIMPL_H | |
12 | #define DECIMALFORMATPATTERNIMPL_H | |
13 | ||
14 | #include "unicode/utypes.h" | |
15 | ||
16 | #define kPatternZeroDigit ((UChar)0x0030) /*'0'*/ | |
17 | #define kPatternSignificantDigit ((UChar)0x0040) /*'@'*/ | |
18 | #define kPatternGroupingSeparator ((UChar)0x002C) /*','*/ | |
19 | #define kPatternDecimalSeparator ((UChar)0x002E) /*'.'*/ | |
20 | #define kPatternPerMill ((UChar)0x2030) | |
21 | #define kPatternPercent ((UChar)0x0025) /*'%'*/ | |
22 | #define kPatternDigit ((UChar)0x0023) /*'#'*/ | |
23 | #define kPatternSeparator ((UChar)0x003B) /*';'*/ | |
24 | #define kPatternExponent ((UChar)0x0045) /*'E'*/ | |
25 | #define kPatternPlus ((UChar)0x002B) /*'+'*/ | |
26 | #define kPatternMinus ((UChar)0x002D) /*'-'*/ | |
27 | #define kPatternPadEscape ((UChar)0x002A) /*'*'*/ | |
28 | #define kQuote ((UChar)0x0027) /*'\''*/ | |
29 | ||
30 | #define kCurrencySign ((UChar)0x00A4) | |
31 | #define kDefaultPad ((UChar)0x0020) /* */ | |
32 | ||
33 | #endif |