| OLD | NEW |
| 1 /* | 1 /* |
| 2 ******************************************************************************* | 2 ******************************************************************************* |
| 3 * Copyright (C) 2007-2010, International Business Machines Corporation and | 3 * Copyright (C) 2007-2010, International Business Machines Corporation and |
| 4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
| 5 ******************************************************************************* | 5 ******************************************************************************* |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include <typeinfo> // for 'typeid' to work | 8 #include "unicode/utypeinfo.h" // for 'typeid' to work |
| 9 | 9 |
| 10 #include "unicode/utypes.h" | 10 #include "unicode/utypes.h" |
| 11 | 11 |
| 12 #if !UCONFIG_NO_FORMATTING | 12 #if !UCONFIG_NO_FORMATTING |
| 13 | 13 |
| 14 #include "unicode/dtrule.h" | 14 #include "unicode/dtrule.h" |
| 15 | 15 |
| 16 U_NAMESPACE_BEGIN | 16 U_NAMESPACE_BEGIN |
| 17 | 17 |
| 18 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(DateTimeRule) | 18 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(DateTimeRule) |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 int32_t | 130 int32_t |
| 131 DateTimeRule::getRuleMillisInDay(void) const { | 131 DateTimeRule::getRuleMillisInDay(void) const { |
| 132 return fMillisInDay; | 132 return fMillisInDay; |
| 133 } | 133 } |
| 134 | 134 |
| 135 U_NAMESPACE_END | 135 U_NAMESPACE_END |
| 136 | 136 |
| 137 #endif /* #if !UCONFIG_NO_FORMATTING */ | 137 #endif /* #if !UCONFIG_NO_FORMATTING */ |
| 138 | 138 |
| 139 //eof | 139 //eof |
| OLD | NEW |