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 TIMEZONE.CPP | 7 * File TIMEZONE.CPP |
8 * | 8 * |
9 * Modification History: | 9 * Modification History: |
10 * | 10 * |
(...skipping 17 matching lines...) Expand all Loading... |
28 * 09/02/98 stephen Added getOffset(monthLen) and hasSameRules() | 28 * 09/02/98 stephen Added getOffset(monthLen) and hasSameRules() |
29 * 09/15/98 stephen Added getStaticClassID() | 29 * 09/15/98 stephen Added getStaticClassID() |
30 * 02/22/99 stephen Removed character literals for EBCDIC safety | 30 * 02/22/99 stephen Removed character literals for EBCDIC safety |
31 * 05/04/99 stephen Changed initDefault() for Mutex issues | 31 * 05/04/99 stephen Changed initDefault() for Mutex issues |
32 * 07/12/99 helena HPUX 11 CC Port. | 32 * 07/12/99 helena HPUX 11 CC Port. |
33 * 12/03/99 aliu Moved data out of static table into icudata.dll. | 33 * 12/03/99 aliu Moved data out of static table into icudata.dll. |
34 * Substantial rewrite of zone lookup, default zone, an
d | 34 * Substantial rewrite of zone lookup, default zone, an
d |
35 * available IDs code. Misc. cleanup. | 35 * available IDs code. Misc. cleanup. |
36 ********************************************************************************
*/ | 36 ********************************************************************************
*/ |
37 | 37 |
38 #include <typeinfo> // for 'typeid' to work | 38 #include "unicode/utypeinfo.h" // for 'typeid' to work |
39 | 39 |
40 #include "unicode/utypes.h" | 40 #include "unicode/utypes.h" |
41 #include "unicode/ustring.h" | 41 #include "unicode/ustring.h" |
42 | 42 |
43 #ifdef U_DEBUG_TZ | 43 #ifdef U_DEBUG_TZ |
44 # include <stdio.h> | 44 # include <stdio.h> |
45 # include "uresimp.h" // for debugging | 45 # include "uresimp.h" // for debugging |
46 | 46 |
47 static void debug_tz_loc(const char *f, int32_t l) | 47 static void debug_tz_loc(const char *f, int32_t l) |
48 { | 48 { |
(...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1378 getCustomID(id, canonicalID, status); | 1378 getCustomID(id, canonicalID, status); |
1379 } | 1379 } |
1380 return canonicalID; | 1380 return canonicalID; |
1381 } | 1381 } |
1382 | 1382 |
1383 U_NAMESPACE_END | 1383 U_NAMESPACE_END |
1384 | 1384 |
1385 #endif /* #if !UCONFIG_NO_FORMATTING */ | 1385 #endif /* #if !UCONFIG_NO_FORMATTING */ |
1386 | 1386 |
1387 //eof | 1387 //eof |
OLD | NEW |