OLD | NEW |
1 /* | 1 /* |
2 ******************************************************************************* | 2 ******************************************************************************* |
3 * Copyright (C) 1997-2010, International Business Machines Corporation and | 3 * Copyright (C) 1997-2010, International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 ******************************************************************************* | 5 ******************************************************************************* |
6 * | 6 * |
7 * File SIMPLETZ.H | 7 * File SIMPLETZ.H |
8 * | 8 * |
9 * Modification History: | 9 * Modification History: |
10 * | 10 * |
11 * Date Name Description | 11 * Date Name Description |
12 * 12/05/96 clhuang Creation. | 12 * 12/05/96 clhuang Creation. |
13 * 04/21/97 aliu Fixed miscellaneous bugs found by inspection and | 13 * 04/21/97 aliu Fixed miscellaneous bugs found by inspection and |
14 * testing. | 14 * testing. |
15 * 07/29/97 aliu Ported source bodies back from Java version with | 15 * 07/29/97 aliu Ported source bodies back from Java version with |
16 * numerous feature enhancements and bug fixes. | 16 * numerous feature enhancements and bug fixes. |
17 * 08/10/98 stephen JDK 1.2 sync. | 17 * 08/10/98 stephen JDK 1.2 sync. |
18 * 09/17/98 stephen Fixed getOffset() for last hour of year and DST | 18 * 09/17/98 stephen Fixed getOffset() for last hour of year and DST |
19 * 12/02/99 aliu Added TimeMode and constructor and setStart/EndRule | 19 * 12/02/99 aliu Added TimeMode and constructor and setStart/EndRule |
20 * methods that take TimeMode. Whitespace cleanup. | 20 * methods that take TimeMode. Whitespace cleanup. |
21 *******************************************************************************
* | 21 *******************************************************************************
* |
22 */ | 22 */ |
23 | 23 |
24 #include <typeinfo> // for 'typeid' to work | 24 #include "unicode/utypeinfo.h" // for 'typeid' to work |
25 | 25 |
26 #include "unicode/utypes.h" | 26 #include "unicode/utypes.h" |
27 | 27 |
28 #if !UCONFIG_NO_FORMATTING | 28 #if !UCONFIG_NO_FORMATTING |
29 | 29 |
30 #include "unicode/simpletz.h" | 30 #include "unicode/simpletz.h" |
31 #include "unicode/gregocal.h" | 31 #include "unicode/gregocal.h" |
32 #include "unicode/smpdtfmt.h" | 32 #include "unicode/smpdtfmt.h" |
33 | 33 |
34 #include "gregoimp.h" | 34 #include "gregoimp.h" |
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1212 } | 1212 } |
1213 trscount = cnt; | 1213 trscount = cnt; |
1214 } | 1214 } |
1215 | 1215 |
1216 | 1216 |
1217 U_NAMESPACE_END | 1217 U_NAMESPACE_END |
1218 | 1218 |
1219 #endif /* #if !UCONFIG_NO_FORMATTING */ | 1219 #endif /* #if !UCONFIG_NO_FORMATTING */ |
1220 | 1220 |
1221 //eof | 1221 //eof |
OLD | NEW |