Index: source/i18n/dt_impl.h |
diff --git a/source/i18n/dtitv_impl.h b/source/i18n/dt_impl.h |
similarity index 86% |
copy from source/i18n/dtitv_impl.h |
copy to source/i18n/dt_impl.h |
index 027bc5e6adb5922b15f852b91e9ffd841b65e1a6..9b01bad79edd9b7e83e6b2c0fa3e98f96f7c3557 100644 |
--- a/source/i18n/dtitv_impl.h |
+++ b/source/i18n/dt_impl.h |
@@ -1,23 +1,25 @@ |
+// Copyright (C) 2016 and later: Unicode, Inc. and others. |
+// License & terms of use: http://www.unicode.org/copyright.html |
/* |
******************************************************************************* |
-* Copyright (C) 2007-2008,2014, International Business Machines Corporation and |
+* Copyright (C) 2007-2016, International Business Machines Corporation and |
* others. All Rights Reserved. |
******************************************************************************* |
* |
-* File DTITV_IMPL.H |
+* File dt_impl.h |
* |
******************************************************************************* |
*/ |
-#ifndef DTITV_IMPL_H__ |
-#define DTITV_IMPL_H__ |
+#ifndef DT_IMPL_H__ |
+#define DT_IMPL_H__ |
/** |
* \file |
* \brief C++ API: Defines macros for interval format implementation |
*/ |
- |
+ |
#if !UCONFIG_NO_FORMATTING |
#include "unicode/unistr.h" |
@@ -30,6 +32,8 @@ |
#define RIGHT_CURLY_BRACKET ((UChar)0x007D) |
#define SPACE ((UChar)0x0020) |
#define EN_DASH ((UChar)0x2013) |
+#define SOLIDUS ((UChar)0x002F) |
+#define PERCENT ((UChar)0x0025) |
#define DIGIT_ZERO ((UChar)0x0030) |
#define DIGIT_ONE ((UChar)0x0031) |
@@ -70,7 +74,9 @@ |
#define CAP_K ((UChar)0x004B) |
#define CAP_L ((UChar)0x004C) |
#define CAP_M ((UChar)0x004D) |
+#define CAP_N ((UChar)0x004E) |
#define CAP_O ((UChar)0x004F) |
+#define CAP_P ((UChar)0x0050) |
#define CAP_Q ((UChar)0x0051) |
#define CAP_S ((UChar)0x0053) |
#define CAP_T ((UChar)0x0054) |
@@ -80,15 +86,7 @@ |
#define CAP_Y ((UChar)0x0059) |
#define CAP_Z ((UChar)0x005A) |
-//#define MINIMUM_SUPPORTED_CALENDAR_FIELD UCAL_MINUTE |
- |
-#define MAX_E_COUNT 5 |
-#define MAX_M_COUNT 5 |
-//#define MAX_INTERVAL_INDEX 4 |
-#define MAX_POSITIVE_INT 56632; |
- |
- |
#endif /* #if !UCONFIG_NO_FORMATTING */ |
-#endif |
+#endif |
//eof |