selfmtimpl.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // © 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /********************************************************************
  4. * COPYRIGHT:
  5. * Copyright (c) 1997-2011, International Business Machines Corporation and
  6. * others. All Rights Reserved.
  7. * Copyright (C) 2010 , Yahoo! Inc.
  8. ********************************************************************
  9. * File selectfmtimpl.h
  10. *
  11. * Date Name Description
  12. * 11/11/09 kirtig Finished first cut of implementation.
  13. *********************************************************************/
  14. #ifndef SELFMTIMPL
  15. #define SELFMTIMPL
  16. #if !UCONFIG_NO_FORMATTING
  17. #include "unicode/format.h"
  18. #include "unicode/locid.h"
  19. #include "unicode/parseerr.h"
  20. #include "unicode/utypes.h"
  21. #include "uvector.h"
  22. #include "hash.h"
  23. U_NAMESPACE_BEGIN
  24. #define DOT ((UChar)0x002E)
  25. #define SINGLE_QUOTE ((UChar)0x0027)
  26. #define SLASH ((UChar)0x002F)
  27. #define BACKSLASH ((UChar)0x005C)
  28. #define SPACE ((UChar)0x0020)
  29. #define TAB ((UChar)0x0009)
  30. #define QUOTATION_MARK ((UChar)0x0022)
  31. #define ASTERISK ((UChar)0x002A)
  32. #define COMMA ((UChar)0x002C)
  33. #define HYPHEN ((UChar)0x002D)
  34. #define U_ZERO ((UChar)0x0030)
  35. #define U_ONE ((UChar)0x0031)
  36. #define U_TWO ((UChar)0x0032)
  37. #define U_THREE ((UChar)0x0033)
  38. #define U_FOUR ((UChar)0x0034)
  39. #define U_FIVE ((UChar)0x0035)
  40. #define U_SIX ((UChar)0x0036)
  41. #define U_SEVEN ((UChar)0x0037)
  42. #define U_EIGHT ((UChar)0x0038)
  43. #define U_NINE ((UChar)0x0039)
  44. #define COLON ((UChar)0x003A)
  45. #define SEMI_COLON ((UChar)0x003B)
  46. #define CAP_A ((UChar)0x0041)
  47. #define CAP_B ((UChar)0x0042)
  48. #define CAP_R ((UChar)0x0052)
  49. #define CAP_Z ((UChar)0x005A)
  50. #define LOWLINE ((UChar)0x005F)
  51. #define LEFTBRACE ((UChar)0x007B)
  52. #define RIGHTBRACE ((UChar)0x007D)
  53. #define LOW_A ((UChar)0x0061)
  54. #define LOW_B ((UChar)0x0062)
  55. #define LOW_C ((UChar)0x0063)
  56. #define LOW_D ((UChar)0x0064)
  57. #define LOW_E ((UChar)0x0065)
  58. #define LOW_F ((UChar)0x0066)
  59. #define LOW_G ((UChar)0x0067)
  60. #define LOW_H ((UChar)0x0068)
  61. #define LOW_I ((UChar)0x0069)
  62. #define LOW_J ((UChar)0x006a)
  63. #define LOW_K ((UChar)0x006B)
  64. #define LOW_L ((UChar)0x006C)
  65. #define LOW_M ((UChar)0x006D)
  66. #define LOW_N ((UChar)0x006E)
  67. #define LOW_O ((UChar)0x006F)
  68. #define LOW_P ((UChar)0x0070)
  69. #define LOW_Q ((UChar)0x0071)
  70. #define LOW_R ((UChar)0x0072)
  71. #define LOW_S ((UChar)0x0073)
  72. #define LOW_T ((UChar)0x0074)
  73. #define LOW_U ((UChar)0x0075)
  74. #define LOW_V ((UChar)0x0076)
  75. #define LOW_W ((UChar)0x0077)
  76. #define LOW_X ((UChar)0x0078)
  77. #define LOW_Y ((UChar)0x0079)
  78. #define LOW_Z ((UChar)0x007A)
  79. class UnicodeSet;
  80. U_NAMESPACE_END
  81. #endif /* #if !UCONFIG_NO_FORMATTING */
  82. #endif // SELFMTIMPL
  83. //eof