OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003-2009, International Business Machines Corporation | 2 * Copyright (C) 2003-2014, International Business Machines Corporation |
3 * and others. All Rights Reserved. | 3 * and others. All Rights Reserved. |
4 ****************************************************************************** | 4 ****************************************************************************** |
5 * | 5 * |
6 * File INDIANCAL.CPP | 6 * File INDIANCAL.CPP |
7 ***************************************************************************** | 7 ***************************************************************************** |
8 */ | 8 */ |
9 | 9 |
10 #include "indiancal.h" | 10 #include "indiancal.h" |
11 #include <stdlib.h> | 11 #include <stdlib.h> |
12 #if !UCONFIG_NO_FORMATTING | 12 #if !UCONFIG_NO_FORMATTING |
13 | 13 |
14 #include "mutex.h" | 14 #include "mutex.h" |
15 #include <float.h> | 15 #include <float.h> |
16 #include "gregoimp.h" // Math | 16 #include "gregoimp.h" // Math |
17 #include "astro.h" // CalendarAstronomer | 17 #include "astro.h" // CalendarAstronomer |
18 #include "uhash.h" | 18 #include "uhash.h" |
19 #include "ucln_in.h" | |
20 | 19 |
21 // Debugging | 20 // Debugging |
22 #ifdef U_DEBUG_INDIANCAL | 21 #ifdef U_DEBUG_INDIANCAL |
23 #include <stdio.h> | 22 #include <stdio.h> |
24 #include <stdarg.h> | 23 #include <stdarg.h> |
25 | 24 |
26 #endif | 25 #endif |
27 | 26 |
28 U_NAMESPACE_BEGIN | 27 U_NAMESPACE_BEGIN |
29 | 28 |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 // out. | 439 // out. |
441 } | 440 } |
442 } | 441 } |
443 | 442 |
444 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(IndianCalendar) | 443 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(IndianCalendar) |
445 | 444 |
446 U_NAMESPACE_END | 445 U_NAMESPACE_END |
447 | 446 |
448 #endif | 447 #endif |
449 | 448 |
OLD | NEW |