File: classwx_date_time.html

package info (click to toggle)
wxpython3.0 3.0.2.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 482,760 kB
  • ctags: 518,293
  • sloc: cpp: 2,127,226; python: 294,045; makefile: 51,942; ansic: 19,033; sh: 3,013; xml: 1,629; perl: 17
file content (4651 lines) | stat: -rw-r--r-- 331,663 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>wxWidgets: wxDateTime Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="extra_stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="page_container">
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" style="width: 100%;">
 <tbody>
 <tr>
  <td id="projectlogo">
    <a href="http://www.wxwidgets.org/" target="_new">
      <img alt="wxWidgets" src="logo.png"/>
    </a>
  </td>
  <td style="padding-left: 0.5em; text-align: right;">
   <span id="projectnumber">Version: 3.0.2</span>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- Generated by Doxygen 1.8.2 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Categories</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a> &#124;
<a href="classwx_date_time-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">wxDateTime Class Reference<div class="ingroups"><a class="el" href="group__group__class__data.html">Data Structures</a></div></div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;wx/datetime.h&gt;</code></p>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> class represents an absolute moment in time. </p>
<p>The type <code>wxDateTime_t</code> is typedefed as <code>unsigned short</code> and is used to contain the number of years, hours, minutes, seconds and milliseconds.</p>
<p>Global constant <a class="el" href="interface_2wx_2datetime_8h.html#ade74a40ef749abadb7c5338e2c9a9321" title="Global instance of an empty wxDateTime object.">wxDefaultDateTime</a> and synonym for it <a class="el" href="interface_2wx_2datetime_8h.html#ad06d2c408599c48fd9bb17804188bf96">wxInvalidDateTime</a> are defined. This constant will be different from any valid <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> object.</p>
<h1><a class="anchor" id="datetime_static"></a>
Static Functions</h1>
<p>All static functions either set or return the static variables of <a class="el" href="classwx_date_span.html" title="This class is a &quot;logical time span&quot; and is useful for implementing program logic for such things as...">wxDateSpan</a> (the country), return the current moment, year, month or number of days in it, or do some general calendar-related actions.</p>
<p>Please note that although several function accept an extra Calendar parameter, it is currently ignored as only the Gregorian calendar is supported. Future versions will support other calendars.</p>
<h1><a class="anchor" id="datetime_formatting"></a>
Date Formatting and Parsing</h1>
<p>The date formatting and parsing functions convert <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> objects to and from text. The conversions to text are mostly trivial: you can either do it using the default date and time representations for the current locale (<a class="el" href="classwx_date_time.html#ab9886b69761a87ccf77f0ffee7c7f12e" title="Identical to calling Format() with &quot;%x&quot; argument (which means &quot;preferred date representation for the ...">FormatDate()</a> and <a class="el" href="classwx_date_time.html#a4d3145af33faf443ac9d9fdfc4256c1e" title="Identical to calling Format() with &quot;%X&quot; argument (which means &quot;preferred time representation for the ...">FormatTime()</a>), using the international standard representation defined by ISO 8601 (<a class="el" href="classwx_date_time.html#a7dc79585261a999dbd43152186e52299" title="This function returns the date representation in the ISO 8601 format &quot;YYYY-MM-DD&quot;.">FormatISODate()</a>, <a class="el" href="classwx_date_time.html#a0f677ffcbc651c733249af36af6bbb3b" title="This function returns the time representation in the ISO 8601 format &quot;HH:MM:SS&quot;.">FormatISOTime()</a> and <a class="el" href="classwx_date_time.html#a8d99cfc519de33d2fcf16360a13212f0" title="Returns the combined date-time representation in the ISO 8601 format &quot;YYYY-MM-DDTHH:MM:SS&quot;.">FormatISOCombined()</a>) or by specifying any format at all and using <a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a> directly.</p>
<p>The conversions from text are more interesting, as there are much more possibilities to care about. The simplest cases can be taken care of with <a class="el" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b" title="This function parses the string date according to the given format.">ParseFormat()</a> which can parse any date in the given (rigid) format. <a class="el" href="classwx_date_time.html#ab0f2485c52d0d3cf0196aaf0062d2f83" title="Parses the string date looking for a date formatted according to the RFC 822 in it.">ParseRfc822Date()</a> is another function for parsing dates in predefined format &ndash; the one of RFC 822 which (still...) defines the format of email messages on the Internet. This format cannot be described with <code>strptime(3)-like</code> format strings used by <a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a>, hence the need for a separate function.</p>
<p>But the most interesting functions are <a class="el" href="classwx_date_time.html#ac903b3227620e1b88019e76b807327e8" title="This functions is like ParseDateTime(), but only allows the time to be specified in the input string...">ParseTime()</a>, <a class="el" href="classwx_date_time.html#acdcb88e25b38099994af45b11391c962" title="This function is like ParseDateTime(), but it only allows the date to be specified.">ParseDate()</a> and <a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485" title="Parses the string datetime containing the date and time in free format.">ParseDateTime()</a>. They try to parse the date and time (or only one of them) in 'free' format, i.e. allow them to be specified in any of possible ways. These functions will usually be used to parse the (interactive) user input which is not bound to be in any predefined format. As an example, <a class="el" href="classwx_date_time.html#acdcb88e25b38099994af45b11391c962" title="This function is like ParseDateTime(), but it only allows the date to be specified.">ParseDate()</a> can parse the strings such as "tomorrow", "March first" and even "next Sunday".</p>
<p>Finally notice that each of the parsing functions is available in several overloads: if the input string is a narrow (<code>char</code> *) string, then a narrow pointer is returned. If the input string is a wide string, a wide char pointer is returned. Finally, if the input parameter is a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>, a narrow char pointer is also returned for backwards compatibility but there is also an additional argument of wxString::const_iterator type in which, if it is not <span class="literal">NULL</span>, an iterator pointing to the end of the scanned string part is returned.</p>
<h2></h2>
<div><span class="lib">Library:</span>&#160;&#160;<span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxbase">wxBase</a></span></div><div><span class="category">Category:</span>&#160;&#160;<span class="category_text"><a class="el" href="group__group__class__data.html">Data Structures</a></span></div><p><span class="stdobj">Predefined objects/pointers:</span></p>
<ul>
<li><a class="el" href="interface_2wx_2datetime_8h.html#ade74a40ef749abadb7c5338e2c9a9321" title="Global instance of an empty wxDateTime object.">wxDefaultDateTime</a></li>
</ul>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="overview_datetime.html">Date and Time</a>, <a class="el" href="classwx_time_span.html" title="wxTimeSpan class represents a time interval.">wxTimeSpan</a>, <a class="el" href="classwx_date_span.html" title="This class is a &quot;logical time span&quot; and is useful for implementing program logic for such things as...">wxDateSpan</a>, <a class="el" href="classwx_calendar_ctrl.html" title="The calendar control allows the user to pick a date.">wxCalendarCtrl</a> </dd></dl>
</div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">Class representing a time zone.  <a href="classwx_date_time_1_1_time_zone.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwx_date_time_1_1_tm.html">Tm</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">Contains broken down date-time representation.  <a href="structwx_date_time_1_1_tm.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a4db12283a6c06cea4c92528fbb7f88bb"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bb">TZ</a> { <br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba87b4b5dd24a2f226d58845a617c9053d">GMT_12</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba557c461adc9d42d4616918de09322374">GMT_11</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba0b1be6322c3d8fd8a69f92becd90ef92">GMT_10</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba92f26e662b9b6fe85e9129b01792405c">GMT_9</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba399a20c6a1a04a0104db4dffe3e97c58">GMT_8</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba7663c300529ca4254900540cecb0b0ce">GMT_7</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba827233a73b3dcb35764873db1e25bfc6">GMT_6</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba9934f36511c6ed34de0a94d5d553a07b">GMT_5</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba2af42038185283cfb9c2e32ae658510e">GMT_4</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba1adb33fc9a930f9f0b9f8a009eb93e2b">GMT_3</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbac62a008b6600cbb068a7d887e839d6a9">GMT_2</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbaff8e187024b6a0331ed17cc9cf54afc9">GMT_1</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba2120dec8c0b1cd718dac28c2d31febe1">GMT0</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba53cced34a141bad15c02769461b0f4ce">GMT1</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba9e7b73170b341b26a3945980376ad0eb">GMT2</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba5b1f37e6ee84cf7ef93e9d98012a4829">GMT3</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba90bc724fa31f2917b7126417132975d5">GMT4</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba4a9d4c0b24aa6223b89c0b998e7a7d72">GMT5</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba9d2a38d213d85f81de337e8f0eb14b3e">GMT6</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba05a789a91aa72ac3077951a6c61a66aa">GMT7</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbacb72b7396d5f75461f2cee0de06999d2">GMT8</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbacf5ea594d20d5df0bebb1f148d648206">GMT9</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbab562c8c00f2773622b9d540bdc381366">GMT10</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbaf0545ec1a575e8e6f0acb97722b591c4">GMT11</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbae8ea01bdd4301a68cbdbc749701a5d79">GMT12</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbaa8b779df126c68b0137a0e9be836ff5d">GMT13</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbad1bb3e8d84a7cd92efabe75a088862ef">WET</a> = GMT0, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbad85e6d8f2aaa3f603c2bfc58d84edb7a">WEST</a> = GMT1, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba768e71f1f3c63c6cf64dd9c9a0f20b0b">CET</a> = GMT1, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbae628c26f3f2a2f404c38f3d8c4d878d5">CEST</a> = GMT2, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba8f0093ca02fad238db726c3ed8ec4c19">EET</a> = GMT2, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba467f28d0dea96f56ae233215d720c9b3">EEST</a> = GMT3, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbafc28b9d52780f1a55d8a4a4f2075674d">MSK</a> = GMT3, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba30e029fadbdec932db6db3b7f9eb461e">MSD</a> = GMT4, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba930fed7e2cfbc9d6ad9698d74aec7a3f">AST</a> = GMT_4, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba70b32b6b2daef8c065fe3f7e81ac155f">ADT</a> = GMT_3, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba20a03ab3f22b9c12c6a12f55f69af885">EST</a> = GMT_5, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba268100e90a290659a27f1daa2ffef118">EDT</a> = GMT_4, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba5d3264d3bb4106df8a0f68b306f363bf">CST</a> = GMT_6, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbad526ab66e38a7141bdd9a82098684303">CDT</a> = GMT_5, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba56d4091091fe350486bd2bafde5469a0">MST</a> = GMT_7, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba7f09567fdbe8c0f2d9ca6b2b5ab3b92a">MDT</a> = GMT_6, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba9ef77e9f8a8423f55ddaf3c65f6f4de5">PST</a> = GMT_8, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba63f8efe7f2da52ba952daa48a2df8ad8">PDT</a> = GMT_7, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba19b49f77ce14e8456f6ba311d5323c51">HST</a> = GMT_10, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbae0007943414383bc2d6d50b56080ffee">AKST</a> = GMT_9, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba3ccd7ea3db468da45836d2a2c66e9069">AKDT</a> = GMT_8, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbab1b9c891ddf8d11322b9a6260131514a">A_WST</a> = GMT8, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba10a8880abe7d55c0e28c41badf1a3857">A_CST</a> = GMT13 + 1, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba30efbb5a9aaf55f7ae3d0b06eafb9ee4">A_EST</a> = GMT10, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba09b72a5bdfbec3d2e22153ee0ae585c2">A_ESST</a> = GMT11, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bbab65d681d65687315d5e8f5160e2d375d">NZST</a> = GMT12, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba50981f4a9aa23c5765bbf82a31353d9c">NZDT</a> = GMT13, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba7c42813bc6ce147bb073c5783cbce8bb">UTC</a> = GMT0
<br/>
 }</td></tr>
<tr class="memdesc:a4db12283a6c06cea4c92528fbb7f88bb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Time zone symbolic names.  <a href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bb">More...</a><br/></td></tr>
<tr class="separator:a4db12283a6c06cea4c92528fbb7f88bb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2c1717e9dff5256cc01f917a5b7f70c"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a> { <br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70cad5691423a7e252a4d910bca3d0cec255">Julian</a>
<br/>
 }</td></tr>
<tr class="memdesc:ab2c1717e9dff5256cc01f917a5b7f70c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Several functions accept an extra parameter specifying the calendar to use (although most of them only support now the Gregorian calendar).  <a href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">More...</a><br/></td></tr>
<tr class="separator:ab2c1717e9dff5256cc01f917a5b7f70c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abdd3b3e656f92a4923c3ddf2026ed126"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> { <br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a5cbf87e9f28cd4beba788133300cf7c5">Country_Unknown</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a1d35fe658dea7b60aaa6f28cde913edf">Country_WesternEurope_Start</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a78947f08ad10bb3a9c910c7dc86bf26b">Country_EEC</a> = Country_WesternEurope_Start, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a9910b3f8af50b8b1d863c04a648cc37c">France</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126ad2ede5cdb83afee5880b1056f544fece">Germany</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126ac01fceffd3df9ab202cc5eb74222467d">UK</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126ac30477024e48c71e9c8294ec848d5ed9">Country_WesternEurope_End</a> = UK, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a49f7126bc437d2c05cd5f8ff63c268e4">Russia</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126ad0e27ed2327558c6b86b924f37238979">USA</a>
<br/>
 }</td></tr>
<tr class="memdesc:abdd3b3e656f92a4923c3ddf2026ed126"><td class="mdescLeft">&#160;</td><td class="mdescRight">Date calculations often depend on the country and <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> allows to set the country whose conventions should be used using <a class="el" href="classwx_date_time.html#a5ad5b532c62dd26784bb51366a27ca8d" title="Sets the country to use by default.">SetCountry()</a>.  <a href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">More...</a><br/></td></tr>
<tr class="separator:abdd3b3e656f92a4923c3ddf2026ed126"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a156e17eb15e3c16a7da36cd810ff9117"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> { <br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a53cc4760da18147518a448ba0da7a85d">Jan</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a6b7a64ef7274382828d3bc1f8836453b">Feb</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117af83cf0954521af250e7ecab93d115050">Mar</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a1ac72d9221b60bf38c2a0d8ef08c7871">Apr</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a71835f9fa0eb5c48da47452c93bf5e6b">May</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a16a1fa0ab2bc344d3841909728be3f96">Jun</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a495d4f30dde1a1adbff6653b12c384d5">Jul</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a7d7b04f514f525794fcbcf715022968a">Aug</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a7028d6990bff742f5f92387f91438884">Sep</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a553f38557712cd32124ffe521573f2cb">Oct</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a013eb4a34e3323d234babe378d011706">Nov</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ac3f2d56832e6af3d54685a6ab81072eb">Dec</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a>
<br/>
 }</td></tr>
<tr class="memdesc:a156e17eb15e3c16a7da36cd810ff9117"><td class="mdescLeft">&#160;</td><td class="mdescRight">symbolic names for the months  <a href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">More...</a><br/></td></tr>
<tr class="separator:a156e17eb15e3c16a7da36cd810ff9117"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ce844e5c79b28711f52ae2d9a571457"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> { <br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457aecc652810e8944beafed362de118d631">Sun</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457ac165afc62596e609922e423ba262fe56">Mon</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457ae1277871c9d23518b6137b9d9b005138">Tue</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457a3edaead476323f6fa7d6dea1e8b193b3">Wed</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457aefdce3348770a8e30443bd559cd272e9">Thu</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457a5de545a0b8d10a527499d25a2308c687">Fri</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457a1fb68aa3f50f920bc1b1d835f1e0eb73">Sat</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457a7bf2467543ea4311ceede8d992829f2c">Inv_WeekDay</a>
<br/>
 }</td></tr>
<tr class="memdesc:a9ce844e5c79b28711f52ae2d9a571457"><td class="mdescLeft">&#160;</td><td class="mdescRight">symbolic names for the weekdays  <a href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">More...</a><br/></td></tr>
<tr class="separator:a9ce844e5c79b28711f52ae2d9a571457"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f9ba1f993835bc0096f8811f92f5d79"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79">Year</a> { <a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a> = SHRT_MIN
 }</td></tr>
<tr class="memdesc:a4f9ba1f993835bc0096f8811f92f5d79"><td class="mdescLeft">&#160;</td><td class="mdescRight">invalid value for the year  <a href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79">More...</a><br/></td></tr>
<tr class="separator:a4f9ba1f993835bc0096f8811f92f5d79"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a49326e6533b05df469ac7c5ff2af78b7"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a> { <br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a> = 0x01, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7afde586e7e109fd5725b2e7c69f604b69">Name_Abbr</a> = 0x02
<br/>
 }</td></tr>
<tr class="memdesc:a49326e6533b05df469ac7c5ff2af78b7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Flags to be used with <a class="el" href="classwx_date_time.html#a85afc6bab234a485e7939e7fec941d76" title="Gets the full (default) or abbreviated name of the given month.">GetMonthName()</a> and <a class="el" href="classwx_date_time.html#a766fa258f8e30e406489df23de54e29f" title="Gets the full (default) or abbreviated name of the given week day.">GetWeekDayName()</a> functions.  <a href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">More...</a><br/></td></tr>
<tr class="separator:a49326e6533b05df469ac7c5ff2af78b7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8ab175ce5385f833894d9b89987a90d4"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a> { <br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a7cf7c63a175ce5bf63e9396655e32a22">Default_First</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a06956cc8c60835143abeccda7c183471">Sunday_First</a>
<br/>
 }</td></tr>
<tr class="memdesc:a8ab175ce5385f833894d9b89987a90d4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Different parts of the world use different conventions for the week start.  <a href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">More...</a><br/></td></tr>
<tr class="separator:a8ab175ce5385f833894d9b89987a90d4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a27df9e32a320a1ca266288d1a436de98"><td class="memItemLeft" align="right" valign="top">typedef unsigned short&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a></td></tr>
<tr class="memdesc:a27df9e32a320a1ca266288d1a436de98"><td class="mdescLeft">&#160;</td><td class="mdescRight">A small unsigned integer type for storing things like minutes, seconds &amp;c.  <a href="#a27df9e32a320a1ca266288d1a436de98"></a><br/></td></tr>
<tr class="separator:a27df9e32a320a1ca266288d1a436de98"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Constructors, Assignment Operators and Setters</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>Constructors and various <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a> methods are collected here.</p>
<p>If you construct a date object from separate values for day, month and year, you should use <a class="el" href="classwx_date_time.html#aaff0bd60809b4d03839ddd4c6eb9e84d" title="Returns true if the object represents a valid time moment.">IsValid()</a> method to check that the values were correct as constructors cannot return an error code. </p>
</div></td></tr>
<tr class="memitem:a4cc372429453a21632d64f34f635d853"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a4cc372429453a21632d64f34f635d853">wxDateTime</a> ()</td></tr>
<tr class="memdesc:a4cc372429453a21632d64f34f635d853"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#a4cc372429453a21632d64f34f635d853"></a><br/></td></tr>
<tr class="separator:a4cc372429453a21632d64f34f635d853"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aca2bc3b942d920e01e496841bd759001"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aca2bc3b942d920e01e496841bd759001">wxDateTime</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;date)</td></tr>
<tr class="memdesc:aca2bc3b942d920e01e496841bd759001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy constructor.  <a href="#aca2bc3b942d920e01e496841bd759001"></a><br/></td></tr>
<tr class="separator:aca2bc3b942d920e01e496841bd759001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af389cfd683905c7bd26d78ed2830f8d3"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#af389cfd683905c7bd26d78ed2830f8d3">wxDateTime</a> (time_t timet)</td></tr>
<tr class="memdesc:af389cfd683905c7bd26d78ed2830f8d3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>.  <a href="#af389cfd683905c7bd26d78ed2830f8d3"></a><br/></td></tr>
<tr class="separator:af389cfd683905c7bd26d78ed2830f8d3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af060ddc94177492d3cedf60f9e17224a"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#af060ddc94177492d3cedf60f9e17224a">wxDateTime</a> (const struct tm &amp;tm)</td></tr>
<tr class="memdesc:af060ddc94177492d3cedf60f9e17224a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>.  <a href="#af060ddc94177492d3cedf60f9e17224a"></a><br/></td></tr>
<tr class="separator:af060ddc94177492d3cedf60f9e17224a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa2c38922eafec2a94fb5ee9221c0f6b9"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aa2c38922eafec2a94fb5ee9221c0f6b9">wxDateTime</a> (double jdn)</td></tr>
<tr class="memdesc:aa2c38922eafec2a94fb5ee9221c0f6b9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>.  <a href="#aa2c38922eafec2a94fb5ee9221c0f6b9"></a><br/></td></tr>
<tr class="separator:aa2c38922eafec2a94fb5ee9221c0f6b9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a929b59bfd0b445d2bd2e5e2b58767c18"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a929b59bfd0b445d2bd2e5e2b58767c18">wxDateTime</a> (<a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> hour, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> minute=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> second=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> millisec=0)</td></tr>
<tr class="memdesc:a929b59bfd0b445d2bd2e5e2b58767c18"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>.  <a href="#a929b59bfd0b445d2bd2e5e2b58767c18"></a><br/></td></tr>
<tr class="separator:a929b59bfd0b445d2bd2e5e2b58767c18"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e4a6d1104d1882514679514e3dbc642"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a8e4a6d1104d1882514679514e3dbc642">wxDateTime</a> (<a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> day, <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> hour=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> minute=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> second=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> millisec=0)</td></tr>
<tr class="memdesc:a8e4a6d1104d1882514679514e3dbc642"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>.  <a href="#a8e4a6d1104d1882514679514e3dbc642"></a><br/></td></tr>
<tr class="separator:a8e4a6d1104d1882514679514e3dbc642"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d16ccd02f0c98f0667f57376da89da7"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a7d16ccd02f0c98f0667f57376da89da7">wxDateTime</a> (const struct _SYSTEMTIME &amp;st)</td></tr>
<tr class="memdesc:a7d16ccd02f0c98f0667f57376da89da7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as SetFromMSWSysTime.  <a href="#a7d16ccd02f0c98f0667f57376da89da7"></a><br/></td></tr>
<tr class="separator:a7d16ccd02f0c98f0667f57376da89da7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1975ca9c72d4fb89050566849776d3b2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a1975ca9c72d4fb89050566849776d3b2">ResetTime</a> ()</td></tr>
<tr class="memdesc:a1975ca9c72d4fb89050566849776d3b2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Reset time to midnight (00:00:00) without changing the date.  <a href="#a1975ca9c72d4fb89050566849776d3b2"></a><br/></td></tr>
<tr class="separator:a1975ca9c72d4fb89050566849776d3b2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a221052d954c072ce56b796eaa4c075d3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3">Set</a> (time_t timet)</td></tr>
<tr class="memdesc:a221052d954c072ce56b796eaa4c075d3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs the object from <em>timet</em> value holding the number of seconds since Jan 1, 1970 UTC.  <a href="#a221052d954c072ce56b796eaa4c075d3"></a><br/></td></tr>
<tr class="separator:a221052d954c072ce56b796eaa4c075d3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae38d80eca7dcbfcd0984708e957c343f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ae38d80eca7dcbfcd0984708e957c343f">Set</a> (const struct tm &amp;tm)</td></tr>
<tr class="memdesc:ae38d80eca7dcbfcd0984708e957c343f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date and time from the broken down representation in the standard <em>tm</em> structure.  <a href="#ae38d80eca7dcbfcd0984708e957c343f"></a><br/></td></tr>
<tr class="separator:ae38d80eca7dcbfcd0984708e957c343f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afe75b8090e51a7b4e1aacccc55fd10bc"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#afe75b8090e51a7b4e1aacccc55fd10bc">Set</a> (const <a class="el" href="structwx_date_time_1_1_tm.html">Tm</a> &amp;tm)</td></tr>
<tr class="memdesc:afe75b8090e51a7b4e1aacccc55fd10bc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date and time from the broken down representation in the <em><a class="el" href="structwx_date_time_1_1_tm.html" title="Contains broken down date-time representation.">wxDateTime::Tm</a></em> structure.  <a href="#afe75b8090e51a7b4e1aacccc55fd10bc"></a><br/></td></tr>
<tr class="separator:afe75b8090e51a7b4e1aacccc55fd10bc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acfaba2a9f0241f74aff4641304f0a8fb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#acfaba2a9f0241f74aff4641304f0a8fb">Set</a> (double jdn)</td></tr>
<tr class="memdesc:acfaba2a9f0241f74aff4641304f0a8fb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date from the so-called Julian Day Number.  <a href="#acfaba2a9f0241f74aff4641304f0a8fb"></a><br/></td></tr>
<tr class="separator:acfaba2a9f0241f74aff4641304f0a8fb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b73caf2a363e429725244483ebc0d08"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0b73caf2a363e429725244483ebc0d08">Set</a> (<a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> hour, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> minute=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> second=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> millisec=0)</td></tr>
<tr class="memdesc:a0b73caf2a363e429725244483ebc0d08"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date to be equal to <a class="el" href="classwx_date_time.html#af730202238b9acd5a5df2977fa40c569" title="Returns the object corresponding to the midnight of the current day (i.e. the same as Now()...">Today()</a> and the time from supplied parameters.  <a href="#a0b73caf2a363e429725244483ebc0d08"></a><br/></td></tr>
<tr class="separator:a0b73caf2a363e429725244483ebc0d08"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f7ee89e55144c61ac19a6543e67db6a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a6f7ee89e55144c61ac19a6543e67db6a">Set</a> (<a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> day, <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> hour=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> minute=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> second=0, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> millisec=0)</td></tr>
<tr class="memdesc:a6f7ee89e55144c61ac19a6543e67db6a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date and time from the parameters.  <a href="#a6f7ee89e55144c61ac19a6543e67db6a"></a><br/></td></tr>
<tr class="separator:a6f7ee89e55144c61ac19a6543e67db6a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a153d3687333e318574299ad191f340bb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a153d3687333e318574299ad191f340bb">SetDay</a> (unsigned short day)</td></tr>
<tr class="memdesc:a153d3687333e318574299ad191f340bb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the day without changing other date components.  <a href="#a153d3687333e318574299ad191f340bb"></a><br/></td></tr>
<tr class="separator:a153d3687333e318574299ad191f340bb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acdba3b71eec0870b14417d3010311a1a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#acdba3b71eec0870b14417d3010311a1a">SetFromDOS</a> (unsigned long ddt)</td></tr>
<tr class="memdesc:acdba3b71eec0870b14417d3010311a1a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date from the date and time in DOS format.  <a href="#acdba3b71eec0870b14417d3010311a1a"></a><br/></td></tr>
<tr class="separator:acdba3b71eec0870b14417d3010311a1a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00a6e0dd915c7239dc0ea6192a1908c1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a00a6e0dd915c7239dc0ea6192a1908c1">SetHour</a> (unsigned short hour)</td></tr>
<tr class="memdesc:a00a6e0dd915c7239dc0ea6192a1908c1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the hour without changing other date components.  <a href="#a00a6e0dd915c7239dc0ea6192a1908c1"></a><br/></td></tr>
<tr class="separator:a00a6e0dd915c7239dc0ea6192a1908c1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab227fbf523dca7ea1aefdc0a806d4622"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab227fbf523dca7ea1aefdc0a806d4622">SetMillisecond</a> (unsigned short millisecond)</td></tr>
<tr class="memdesc:ab227fbf523dca7ea1aefdc0a806d4622"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the millisecond without changing other date components.  <a href="#ab227fbf523dca7ea1aefdc0a806d4622"></a><br/></td></tr>
<tr class="separator:ab227fbf523dca7ea1aefdc0a806d4622"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae028d28c81960d95b9d433ea02775cde"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ae028d28c81960d95b9d433ea02775cde">SetMinute</a> (unsigned short minute)</td></tr>
<tr class="memdesc:ae028d28c81960d95b9d433ea02775cde"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minute without changing other date components.  <a href="#ae028d28c81960d95b9d433ea02775cde"></a><br/></td></tr>
<tr class="separator:ae028d28c81960d95b9d433ea02775cde"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a480fc77f9dc8491eb71b75be65befc57"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a480fc77f9dc8491eb71b75be65befc57">SetMonth</a> (<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month)</td></tr>
<tr class="memdesc:a480fc77f9dc8491eb71b75be65befc57"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the month without changing other date components.  <a href="#a480fc77f9dc8491eb71b75be65befc57"></a><br/></td></tr>
<tr class="separator:a480fc77f9dc8491eb71b75be65befc57"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aff2fd9f698a48bd18946b3d950adda65"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aff2fd9f698a48bd18946b3d950adda65">SetSecond</a> (unsigned short second)</td></tr>
<tr class="memdesc:aff2fd9f698a48bd18946b3d950adda65"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the second without changing other date components.  <a href="#aff2fd9f698a48bd18946b3d950adda65"></a><br/></td></tr>
<tr class="separator:aff2fd9f698a48bd18946b3d950adda65"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab033c8036318532cb55943847a9abb66"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab033c8036318532cb55943847a9abb66">SetToCurrent</a> ()</td></tr>
<tr class="memdesc:ab033c8036318532cb55943847a9abb66"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date and time of to the current values.  <a href="#ab033c8036318532cb55943847a9abb66"></a><br/></td></tr>
<tr class="separator:ab033c8036318532cb55943847a9abb66"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac68d4faee34360eac3ba52c5def5ac09"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ac68d4faee34360eac3ba52c5def5ac09">SetYear</a> (int year)</td></tr>
<tr class="memdesc:ac68d4faee34360eac3ba52c5def5ac09"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the year without changing other date components.  <a href="#ac68d4faee34360eac3ba52c5def5ac09"></a><br/></td></tr>
<tr class="separator:ac68d4faee34360eac3ba52c5def5ac09"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a437af2acfdf63d47f09e43269e4c3f76"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a437af2acfdf63d47f09e43269e4c3f76">operator=</a> (time_t timet)</td></tr>
<tr class="memdesc:a437af2acfdf63d47f09e43269e4c3f76"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>.  <a href="#a437af2acfdf63d47f09e43269e4c3f76"></a><br/></td></tr>
<tr class="separator:a437af2acfdf63d47f09e43269e4c3f76"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4040ef007d8fc9273b0e6bf489d4d975"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a4040ef007d8fc9273b0e6bf489d4d975">operator=</a> (const struct tm &amp;tm)</td></tr>
<tr class="memdesc:a4040ef007d8fc9273b0e6bf489d4d975"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>.  <a href="#a4040ef007d8fc9273b0e6bf489d4d975"></a><br/></td></tr>
<tr class="separator:a4040ef007d8fc9273b0e6bf489d4d975"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader">Accessors</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>Here are the trivial accessors.</p>
<p>Other functions, which might have to perform some more complicated calculations to find the answer are under the "Date Arithmetics" section. </p>
</div></td></tr>
<tr class="memitem:a66aebd04f50f468049f17e8159e69a6a"><td class="memItemLeft" align="right" valign="top">unsigned long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a66aebd04f50f468049f17e8159e69a6a">GetAsDOS</a> () const </td></tr>
<tr class="memdesc:a66aebd04f50f468049f17e8159e69a6a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the date and time in DOS format.  <a href="#a66aebd04f50f468049f17e8159e69a6a"></a><br/></td></tr>
<tr class="separator:a66aebd04f50f468049f17e8159e69a6a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a48d529a2bb8434ce9419dbaa87a7e06d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a48d529a2bb8434ce9419dbaa87a7e06d">SetFromMSWSysTime</a> (const struct _SYSTEMTIME &amp;st)</td></tr>
<tr class="memdesc:a48d529a2bb8434ce9419dbaa87a7e06d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Initialize using the Windows SYSTEMTIME structure.  <a href="#a48d529a2bb8434ce9419dbaa87a7e06d"></a><br/></td></tr>
<tr class="separator:a48d529a2bb8434ce9419dbaa87a7e06d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae40a8c0a37d06ac476d856827e5176d8"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ae40a8c0a37d06ac476d856827e5176d8">GetAsMSWSysTime</a> (struct _SYSTEMTIME *st) const </td></tr>
<tr class="memdesc:ae40a8c0a37d06ac476d856827e5176d8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the date and time in the Windows SYSTEMTIME format.  <a href="#ae40a8c0a37d06ac476d856827e5176d8"></a><br/></td></tr>
<tr class="separator:ae40a8c0a37d06ac476d856827e5176d8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acc8f531061b26803b921e20e19faaea1"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#acc8f531061b26803b921e20e19faaea1">GetCentury</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:acc8f531061b26803b921e20e19faaea1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the century of this date.  <a href="#acc8f531061b26803b921e20e19faaea1"></a><br/></td></tr>
<tr class="separator:acc8f531061b26803b921e20e19faaea1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3b341c8cb0e343d3b7f9db929c7b4830"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a3b341c8cb0e343d3b7f9db929c7b4830">GetDateOnly</a> () const </td></tr>
<tr class="memdesc:a3b341c8cb0e343d3b7f9db929c7b4830"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the object having the same date component as this one but time of 00:00:00.  <a href="#a3b341c8cb0e343d3b7f9db929c7b4830"></a><br/></td></tr>
<tr class="separator:a3b341c8cb0e343d3b7f9db929c7b4830"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6ce5fca7b6e7cc7a230e4595d52fb8ed"><td class="memItemLeft" align="right" valign="top">unsigned short&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a6ce5fca7b6e7cc7a230e4595d52fb8ed">GetDay</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a6ce5fca7b6e7cc7a230e4595d52fb8ed"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the day in the given timezone (local one by default).  <a href="#a6ce5fca7b6e7cc7a230e4595d52fb8ed"></a><br/></td></tr>
<tr class="separator:a6ce5fca7b6e7cc7a230e4595d52fb8ed"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0242e2ec46f3345576bce53354cf5e6a"><td class="memItemLeft" align="right" valign="top">unsigned short&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0242e2ec46f3345576bce53354cf5e6a">GetDayOfYear</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a0242e2ec46f3345576bce53354cf5e6a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the day of the year (in 1-366 range) in the given timezone (local one by default).  <a href="#a0242e2ec46f3345576bce53354cf5e6a"></a><br/></td></tr>
<tr class="separator:a0242e2ec46f3345576bce53354cf5e6a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c07232d5f21ba2ede2a4751f3531c1a"><td class="memItemLeft" align="right" valign="top">unsigned short&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0c07232d5f21ba2ede2a4751f3531c1a">GetHour</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a0c07232d5f21ba2ede2a4751f3531c1a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the hour in the given timezone (local one by default).  <a href="#a0c07232d5f21ba2ede2a4751f3531c1a"></a><br/></td></tr>
<tr class="separator:a0c07232d5f21ba2ede2a4751f3531c1a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ae6607047e0e0971e1f6e02fbaf12d4"><td class="memItemLeft" align="right" valign="top">unsigned short&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a9ae6607047e0e0971e1f6e02fbaf12d4">GetMillisecond</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a9ae6607047e0e0971e1f6e02fbaf12d4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the milliseconds in the given timezone (local one by default).  <a href="#a9ae6607047e0e0971e1f6e02fbaf12d4"></a><br/></td></tr>
<tr class="separator:a9ae6607047e0e0971e1f6e02fbaf12d4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad78c55f442700463a58e3f57054c61e8"><td class="memItemLeft" align="right" valign="top">unsigned short&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ad78c55f442700463a58e3f57054c61e8">GetMinute</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:ad78c55f442700463a58e3f57054c61e8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the minute in the given timezone (local one by default).  <a href="#ad78c55f442700463a58e3f57054c61e8"></a><br/></td></tr>
<tr class="separator:ad78c55f442700463a58e3f57054c61e8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e1316e87a89b31a2b72958201105061"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a7e1316e87a89b31a2b72958201105061">GetMonth</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a7e1316e87a89b31a2b72958201105061"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the month in the given timezone (local one by default).  <a href="#a7e1316e87a89b31a2b72958201105061"></a><br/></td></tr>
<tr class="separator:a7e1316e87a89b31a2b72958201105061"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf71fea598bd0baeb6b0e1f56eba093b"><td class="memItemLeft" align="right" valign="top">unsigned short&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#adf71fea598bd0baeb6b0e1f56eba093b">GetSecond</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:adf71fea598bd0baeb6b0e1f56eba093b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the seconds in the given timezone (local one by default).  <a href="#adf71fea598bd0baeb6b0e1f56eba093b"></a><br/></td></tr>
<tr class="separator:adf71fea598bd0baeb6b0e1f56eba093b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6be02e8f615380ff701c5f9cedc9fb84"><td class="memItemLeft" align="right" valign="top">time_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a6be02e8f615380ff701c5f9cedc9fb84">GetTicks</a> () const </td></tr>
<tr class="memdesc:a6be02e8f615380ff701c5f9cedc9fb84"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of seconds since Jan 1, 1970 UTC.  <a href="#a6be02e8f615380ff701c5f9cedc9fb84"></a><br/></td></tr>
<tr class="separator:a6be02e8f615380ff701c5f9cedc9fb84"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5eb3d08cd32226a5aefa87a65dffe759"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structwx_date_time_1_1_tm.html">Tm</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a5eb3d08cd32226a5aefa87a65dffe759">GetTm</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a5eb3d08cd32226a5aefa87a65dffe759"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns broken down representation of the date and time.  <a href="#a5eb3d08cd32226a5aefa87a65dffe759"></a><br/></td></tr>
<tr class="separator:a5eb3d08cd32226a5aefa87a65dffe759"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ada293c954c5b0345846bb69de3938da2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ada293c954c5b0345846bb69de3938da2">GetWeekDay</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:ada293c954c5b0345846bb69de3938da2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the week day in the given timezone (local one by default).  <a href="#ada293c954c5b0345846bb69de3938da2"></a><br/></td></tr>
<tr class="separator:ada293c954c5b0345846bb69de3938da2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac2e541595f16d6f48db34b489a5d1ce9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ac2e541595f16d6f48db34b489a5d1ce9">GetWeekOfMonth</a> (<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a> flags=<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a>, const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:ac2e541595f16d6f48db34b489a5d1ce9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the ordinal number of the week in the month (in 1-5 range).  <a href="#ac2e541595f16d6f48db34b489a5d1ce9"></a><br/></td></tr>
<tr class="separator:ac2e541595f16d6f48db34b489a5d1ce9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeb92e6f6fdd172850a759fda324c87fb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aeb92e6f6fdd172850a759fda324c87fb">GetWeekOfYear</a> (<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a> flags=<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a>, const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:aeb92e6f6fdd172850a759fda324c87fb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of the week of the year this date is in.  <a href="#aeb92e6f6fdd172850a759fda324c87fb"></a><br/></td></tr>
<tr class="separator:aeb92e6f6fdd172850a759fda324c87fb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a27fe507f5ba549091f1f7d523e424be9"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a27fe507f5ba549091f1f7d523e424be9">GetYear</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a27fe507f5ba549091f1f7d523e424be9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the year in the given timezone (local one by default).  <a href="#a27fe507f5ba549091f1f7d523e424be9"></a><br/></td></tr>
<tr class="separator:a27fe507f5ba549091f1f7d523e424be9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaff0bd60809b4d03839ddd4c6eb9e84d"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aaff0bd60809b4d03839ddd4c6eb9e84d">IsValid</a> () const </td></tr>
<tr class="memdesc:aaff0bd60809b4d03839ddd4c6eb9e84d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the object represents a valid time moment.  <a href="#aaff0bd60809b4d03839ddd4c6eb9e84d"></a><br/></td></tr>
<tr class="separator:aaff0bd60809b4d03839ddd4c6eb9e84d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a24f030fd10755b6a0e30fb7cdc9933bc"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a24f030fd10755b6a0e30fb7cdc9933bc">IsWorkDay</a> (<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> country=<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a>) const </td></tr>
<tr class="memdesc:a24f030fd10755b6a0e30fb7cdc9933bc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> is this day is not a holiday in the given country.  <a href="#a24f030fd10755b6a0e30fb7cdc9933bc"></a><br/></td></tr>
<tr class="separator:a24f030fd10755b6a0e30fb7cdc9933bc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader">Date Comparison</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>There are several functions to allow date comparison.</p>
<p>To supplement them, a few global operators, etc taking <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> are defined. </p>
</div></td></tr>
<tr class="memitem:a73fc9631cab5db9cc602bb5ec6c1f505"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a73fc9631cab5db9cc602bb5ec6c1f505">IsEarlierThan</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;datetime) const </td></tr>
<tr class="memdesc:a73fc9631cab5db9cc602bb5ec6c1f505"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this date precedes the given one.  <a href="#a73fc9631cab5db9cc602bb5ec6c1f505"></a><br/></td></tr>
<tr class="separator:a73fc9631cab5db9cc602bb5ec6c1f505"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a00396a0e837d2577547363a50467ac"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0a00396a0e837d2577547363a50467ac">IsEqualTo</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;datetime) const </td></tr>
<tr class="memdesc:a0a00396a0e837d2577547363a50467ac"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the two dates are strictly identical.  <a href="#a0a00396a0e837d2577547363a50467ac"></a><br/></td></tr>
<tr class="separator:a0a00396a0e837d2577547363a50467ac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a984b284c05ac8f37c5ad335cd6ad1c52"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a984b284c05ac8f37c5ad335cd6ad1c52">IsEqualUpTo</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;dt, const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;ts) const </td></tr>
<tr class="memdesc:a984b284c05ac8f37c5ad335cd6ad1c52"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the date is equal to another one up to the given time interval, i.e. if the absolute difference between the two dates is less than this interval.  <a href="#a984b284c05ac8f37c5ad335cd6ad1c52"></a><br/></td></tr>
<tr class="separator:a984b284c05ac8f37c5ad335cd6ad1c52"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9e0c48caeb682ef668b4d7940d663937"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a9e0c48caeb682ef668b4d7940d663937">IsLaterThan</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;datetime) const </td></tr>
<tr class="memdesc:a9e0c48caeb682ef668b4d7940d663937"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this date is later than the given one.  <a href="#a9e0c48caeb682ef668b4d7940d663937"></a><br/></td></tr>
<tr class="separator:a9e0c48caeb682ef668b4d7940d663937"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a237d373eb71aff639e44e5ff46ddf2f3"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a237d373eb71aff639e44e5ff46ddf2f3">IsSameDate</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;dt) const </td></tr>
<tr class="memdesc:a237d373eb71aff639e44e5ff46ddf2f3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the date is the same without comparing the time parts.  <a href="#a237d373eb71aff639e44e5ff46ddf2f3"></a><br/></td></tr>
<tr class="separator:a237d373eb71aff639e44e5ff46ddf2f3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5627246bfbd060f01f027ae1d53a7f24"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a5627246bfbd060f01f027ae1d53a7f24">IsSameTime</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;dt) const </td></tr>
<tr class="memdesc:a5627246bfbd060f01f027ae1d53a7f24"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the time is the same (although dates may differ).  <a href="#a5627246bfbd060f01f027ae1d53a7f24"></a><br/></td></tr>
<tr class="separator:a5627246bfbd060f01f027ae1d53a7f24"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad1edfb9a46c2dcd963200beff1648dc2"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ad1edfb9a46c2dcd963200beff1648dc2">IsStrictlyBetween</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;t1, const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;t2) const </td></tr>
<tr class="memdesc:ad1edfb9a46c2dcd963200beff1648dc2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this date lies strictly between the two given dates.  <a href="#ad1edfb9a46c2dcd963200beff1648dc2"></a><br/></td></tr>
<tr class="separator:ad1edfb9a46c2dcd963200beff1648dc2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8985ab251703e34d0b288a22581ba9d8"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a8985ab251703e34d0b288a22581ba9d8">IsBetween</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;t1, const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;t2) const </td></tr>
<tr class="memdesc:a8985ab251703e34d0b288a22581ba9d8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if <a class="el" href="classwx_date_time.html#ad1edfb9a46c2dcd963200beff1648dc2" title="Returns true if this date lies strictly between the two given dates.">IsStrictlyBetween()</a> is <span class="literal">true</span> or if the date is equal to one of the limit values.  <a href="#a8985ab251703e34d0b288a22581ba9d8"></a><br/></td></tr>
<tr class="separator:a8985ab251703e34d0b288a22581ba9d8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader">Date Arithmetics</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>These functions carry out <a class="el" href="overview_datetime.html#overview_datetime_arithmetics">arithmetics</a> on the <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> objects.</p>
<p>As explained in the overview, either <a class="el" href="classwx_time_span.html" title="wxTimeSpan class represents a time interval.">wxTimeSpan</a> or <a class="el" href="classwx_date_span.html" title="This class is a &quot;logical time span&quot; and is useful for implementing program logic for such things as...">wxDateSpan</a> may be added to <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a>, hence all functions are overloaded to accept both arguments.</p>
<p>Also, both <a class="el" href="classwx_date_time.html#a53c8d4e51a784a64b374124a60921f27" title="Adds the given date span to this object.">Add()</a> and <a class="el" href="classwx_date_time.html#a99bfe3957c206d71cd4d980b10b400a1" title="Subtracts the given time span from this object.">Subtract()</a> have both const and non-const version. The first one returns a new object which represents the sum/difference of the original one with the argument while the second form modifies the object to which it is applied. The operators "-=" and "+=" are defined to be equivalent to the second forms of these functions. </p>
</div></td></tr>
<tr class="memitem:a53c8d4e51a784a64b374124a60921f27"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a53c8d4e51a784a64b374124a60921f27">Add</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;diff) const </td></tr>
<tr class="memdesc:a53c8d4e51a784a64b374124a60921f27"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given date span to this object.  <a href="#a53c8d4e51a784a64b374124a60921f27"></a><br/></td></tr>
<tr class="separator:a53c8d4e51a784a64b374124a60921f27"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8b0586b1d0a83fe520ec87736cd210b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ae8b0586b1d0a83fe520ec87736cd210b">Add</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:ae8b0586b1d0a83fe520ec87736cd210b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given date span to this object.  <a href="#ae8b0586b1d0a83fe520ec87736cd210b"></a><br/></td></tr>
<tr class="separator:ae8b0586b1d0a83fe520ec87736cd210b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8cb13e8a953a8061fba8c718929beaa3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a8cb13e8a953a8061fba8c718929beaa3">Add</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;diff) const </td></tr>
<tr class="memdesc:a8cb13e8a953a8061fba8c718929beaa3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given time span to this object.  <a href="#a8cb13e8a953a8061fba8c718929beaa3"></a><br/></td></tr>
<tr class="separator:a8cb13e8a953a8061fba8c718929beaa3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a36c3dfb82a3fdf9c0e4c8cc944508d0d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a36c3dfb82a3fdf9c0e4c8cc944508d0d">Add</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:a36c3dfb82a3fdf9c0e4c8cc944508d0d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given time span to this object.  <a href="#a36c3dfb82a3fdf9c0e4c8cc944508d0d"></a><br/></td></tr>
<tr class="separator:a36c3dfb82a3fdf9c0e4c8cc944508d0d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a99bfe3957c206d71cd4d980b10b400a1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a99bfe3957c206d71cd4d980b10b400a1">Subtract</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;diff) const </td></tr>
<tr class="memdesc:a99bfe3957c206d71cd4d980b10b400a1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given time span from this object.  <a href="#a99bfe3957c206d71cd4d980b10b400a1"></a><br/></td></tr>
<tr class="separator:a99bfe3957c206d71cd4d980b10b400a1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9bb9c12d2fa47e67b6f9975f5cb8d750"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a9bb9c12d2fa47e67b6f9975f5cb8d750">Subtract</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:a9bb9c12d2fa47e67b6f9975f5cb8d750"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given time span from this object.  <a href="#a9bb9c12d2fa47e67b6f9975f5cb8d750"></a><br/></td></tr>
<tr class="separator:a9bb9c12d2fa47e67b6f9975f5cb8d750"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afb1be3e9505496ec939897ec892fe694"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#afb1be3e9505496ec939897ec892fe694">Subtract</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;diff) const </td></tr>
<tr class="memdesc:afb1be3e9505496ec939897ec892fe694"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given date span from this object.  <a href="#afb1be3e9505496ec939897ec892fe694"></a><br/></td></tr>
<tr class="separator:afb1be3e9505496ec939897ec892fe694"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2975130454759c7b198e14de10d2655"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ad2975130454759c7b198e14de10d2655">Subtract</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:ad2975130454759c7b198e14de10d2655"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given date span from this object.  <a href="#ad2975130454759c7b198e14de10d2655"></a><br/></td></tr>
<tr class="separator:ad2975130454759c7b198e14de10d2655"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c983954508addf59aa40c75eac4beea"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_time_span.html">wxTimeSpan</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0c983954508addf59aa40c75eac4beea">Subtract</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;dt) const </td></tr>
<tr class="memdesc:a0c983954508addf59aa40c75eac4beea"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts another date from this one and returns the difference between them as a <a class="el" href="classwx_time_span.html" title="wxTimeSpan class represents a time interval.">wxTimeSpan</a>.  <a href="#a0c983954508addf59aa40c75eac4beea"></a><br/></td></tr>
<tr class="separator:a0c983954508addf59aa40c75eac4beea"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afac1ab9627e16a96a5634fe9a16cbe6d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_span.html">wxDateSpan</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#afac1ab9627e16a96a5634fe9a16cbe6d">DiffAsDateSpan</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;dt) const </td></tr>
<tr class="memdesc:afac1ab9627e16a96a5634fe9a16cbe6d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the difference between this object and <em>dt</em> as a <a class="el" href="classwx_date_span.html" title="This class is a &quot;logical time span&quot; and is useful for implementing program logic for such things as...">wxDateSpan</a>.  <a href="#afac1ab9627e16a96a5634fe9a16cbe6d"></a><br/></td></tr>
<tr class="separator:afac1ab9627e16a96a5634fe9a16cbe6d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac1a77fc607ee36a16fba7078d25fe44d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ac1a77fc607ee36a16fba7078d25fe44d">operator+=</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:ac1a77fc607ee36a16fba7078d25fe44d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given date span to this object.  <a href="#ac1a77fc607ee36a16fba7078d25fe44d"></a><br/></td></tr>
<tr class="separator:ac1a77fc607ee36a16fba7078d25fe44d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0af3cec098ac6e2a8a18c2759024307a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0af3cec098ac6e2a8a18c2759024307a">operator+</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;ds) const </td></tr>
<tr class="memdesc:a0af3cec098ac6e2a8a18c2759024307a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given date span to this object.  <a href="#a0af3cec098ac6e2a8a18c2759024307a"></a><br/></td></tr>
<tr class="separator:a0af3cec098ac6e2a8a18c2759024307a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a146dd110466fb8ba714e98a853b83019"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a146dd110466fb8ba714e98a853b83019">operator-=</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:a146dd110466fb8ba714e98a853b83019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given date span from this object.  <a href="#a146dd110466fb8ba714e98a853b83019"></a><br/></td></tr>
<tr class="separator:a146dd110466fb8ba714e98a853b83019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2bb838f74ca477a14ff15296272fdb20"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a2bb838f74ca477a14ff15296272fdb20">operator-</a> (const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;ds) const </td></tr>
<tr class="memdesc:a2bb838f74ca477a14ff15296272fdb20"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given date span from this object.  <a href="#a2bb838f74ca477a14ff15296272fdb20"></a><br/></td></tr>
<tr class="separator:a2bb838f74ca477a14ff15296272fdb20"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae3f78fde5174f576fca00eb21654544f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ae3f78fde5174f576fca00eb21654544f">operator+=</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:ae3f78fde5174f576fca00eb21654544f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given time span to this object.  <a href="#ae3f78fde5174f576fca00eb21654544f"></a><br/></td></tr>
<tr class="separator:ae3f78fde5174f576fca00eb21654544f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abba6556909650764a6749eb84b57505d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#abba6556909650764a6749eb84b57505d">operator+</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;ts) const </td></tr>
<tr class="memdesc:abba6556909650764a6749eb84b57505d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the given time span to this object.  <a href="#abba6556909650764a6749eb84b57505d"></a><br/></td></tr>
<tr class="separator:abba6556909650764a6749eb84b57505d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a45d8ef84a5fcda547a9a15226ee68347"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a45d8ef84a5fcda547a9a15226ee68347">operator-=</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;diff)</td></tr>
<tr class="memdesc:a45d8ef84a5fcda547a9a15226ee68347"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given time span from this object.  <a href="#a45d8ef84a5fcda547a9a15226ee68347"></a><br/></td></tr>
<tr class="separator:a45d8ef84a5fcda547a9a15226ee68347"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a823c5616c614eca8c9b666c5e1739fa1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a823c5616c614eca8c9b666c5e1739fa1">operator-</a> (const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;ts) const </td></tr>
<tr class="memdesc:a823c5616c614eca8c9b666c5e1739fa1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts the given time span from this object.  <a href="#a823c5616c614eca8c9b666c5e1739fa1"></a><br/></td></tr>
<tr class="separator:a823c5616c614eca8c9b666c5e1739fa1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1acfe9f39dae54e792958ee602604a9f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_time_span.html">wxTimeSpan</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a1acfe9f39dae54e792958ee602604a9f">operator-</a> (const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;dt2) const </td></tr>
<tr class="memdesc:a1acfe9f39dae54e792958ee602604a9f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subtracts another date from this one and returns the difference between them as a <a class="el" href="classwx_time_span.html" title="wxTimeSpan class represents a time interval.">wxTimeSpan</a>.  <a href="#a1acfe9f39dae54e792958ee602604a9f"></a><br/></td></tr>
<tr class="separator:a1acfe9f39dae54e792958ee602604a9f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader">Date Formatting and Parsing</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>See <a class="el" href="classwx_date_time.html#datetime_formatting">Date Formatting and Parsing</a> </p>
</div></td></tr>
<tr class="memitem:a32377f43a31e29ad4fe70f299650c5f8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8">Format</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;format=wxDefaultDateTimeFormat, const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz=<a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a>) const </td></tr>
<tr class="memdesc:a32377f43a31e29ad4fe70f299650c5f8"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function does the same as the standard ANSI C <code>strftime(3)</code> function (<a href="http://www.cplusplus.com/reference/clibrary/ctime/strftime.html">http://www.cplusplus.com/reference/clibrary/ctime/strftime.html</a>).  <a href="#a32377f43a31e29ad4fe70f299650c5f8"></a><br/></td></tr>
<tr class="separator:a32377f43a31e29ad4fe70f299650c5f8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab9886b69761a87ccf77f0ffee7c7f12e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab9886b69761a87ccf77f0ffee7c7f12e">FormatDate</a> () const </td></tr>
<tr class="memdesc:ab9886b69761a87ccf77f0ffee7c7f12e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Identical to calling <a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a> with <code>"%x"</code> argument (which means "preferred date representation for the current locale").  <a href="#ab9886b69761a87ccf77f0ffee7c7f12e"></a><br/></td></tr>
<tr class="separator:ab9886b69761a87ccf77f0ffee7c7f12e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8d99cfc519de33d2fcf16360a13212f0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a8d99cfc519de33d2fcf16360a13212f0">FormatISOCombined</a> (char sep= 'T') const </td></tr>
<tr class="memdesc:a8d99cfc519de33d2fcf16360a13212f0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the combined date-time representation in the ISO 8601 format <code>"YYYY-MM-DDTHH:MM:SS"</code>.  <a href="#a8d99cfc519de33d2fcf16360a13212f0"></a><br/></td></tr>
<tr class="separator:a8d99cfc519de33d2fcf16360a13212f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7dc79585261a999dbd43152186e52299"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a7dc79585261a999dbd43152186e52299">FormatISODate</a> () const </td></tr>
<tr class="memdesc:a7dc79585261a999dbd43152186e52299"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function returns the date representation in the ISO 8601 format <code>"YYYY-MM-DD"</code>.  <a href="#a7dc79585261a999dbd43152186e52299"></a><br/></td></tr>
<tr class="separator:a7dc79585261a999dbd43152186e52299"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0f677ffcbc651c733249af36af6bbb3b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0f677ffcbc651c733249af36af6bbb3b">FormatISOTime</a> () const </td></tr>
<tr class="memdesc:a0f677ffcbc651c733249af36af6bbb3b"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function returns the time representation in the ISO 8601 format <code>"HH:MM:SS"</code>.  <a href="#a0f677ffcbc651c733249af36af6bbb3b"></a><br/></td></tr>
<tr class="separator:a0f677ffcbc651c733249af36af6bbb3b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4d3145af33faf443ac9d9fdfc4256c1e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a4d3145af33faf443ac9d9fdfc4256c1e">FormatTime</a> () const </td></tr>
<tr class="memdesc:a4d3145af33faf443ac9d9fdfc4256c1e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Identical to calling <a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a> with <code>"%X"</code> argument (which means "preferred time representation for the current locale").  <a href="#a4d3145af33faf443ac9d9fdfc4256c1e"></a><br/></td></tr>
<tr class="separator:a4d3145af33faf443ac9d9fdfc4256c1e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acdcb88e25b38099994af45b11391c962"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#acdcb88e25b38099994af45b11391c962">ParseDate</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date, wxString::const_iterator *end)</td></tr>
<tr class="memdesc:acdcb88e25b38099994af45b11391c962"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is like <a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485" title="Parses the string datetime containing the date and time in free format.">ParseDateTime()</a>, but it only allows the date to be specified.  <a href="#acdcb88e25b38099994af45b11391c962"></a><br/></td></tr>
<tr class="separator:acdcb88e25b38099994af45b11391c962"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a332a41f998bc3be6c0a9a81449112485"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485">ParseDateTime</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;datetime, wxString::const_iterator *end)</td></tr>
<tr class="memdesc:a332a41f998bc3be6c0a9a81449112485"><td class="mdescLeft">&#160;</td><td class="mdescRight">Parses the string <em>datetime</em> containing the date and time in free format.  <a href="#a332a41f998bc3be6c0a9a81449112485"></a><br/></td></tr>
<tr class="separator:a332a41f998bc3be6c0a9a81449112485"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5d01d56c310d505a093f1a7f25086a1b"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b">ParseFormat</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date, const <a class="el" href="classwx_string.html">wxString</a> &amp;format, const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;dateDef, wxString::const_iterator *end)</td></tr>
<tr class="memdesc:a5d01d56c310d505a093f1a7f25086a1b"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function parses the string <em>date</em> according to the given <em>format</em>.  <a href="#a5d01d56c310d505a093f1a7f25086a1b"></a><br/></td></tr>
<tr class="separator:a5d01d56c310d505a093f1a7f25086a1b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa2137ab606576e3f5baf50d98ff47d17"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aa2137ab606576e3f5baf50d98ff47d17">ParseFormat</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date, const <a class="el" href="classwx_string.html">wxString</a> &amp;format, wxString::const_iterator *end)</td></tr>
<tr class="memdesc:aa2137ab606576e3f5baf50d98ff47d17"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#aa2137ab606576e3f5baf50d98ff47d17"></a><br/></td></tr>
<tr class="separator:aa2137ab606576e3f5baf50d98ff47d17"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9430da2d38573e4043cf1217c0da1916"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a9430da2d38573e4043cf1217c0da1916">ParseFormat</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date, wxString::const_iterator *end)</td></tr>
<tr class="memdesc:a9430da2d38573e4043cf1217c0da1916"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a9430da2d38573e4043cf1217c0da1916"></a><br/></td></tr>
<tr class="separator:a9430da2d38573e4043cf1217c0da1916"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a35240c6a928bc9c763a5d26bd8f3072b"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a35240c6a928bc9c763a5d26bd8f3072b">ParseISOCombined</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date, char sep= 'T')</td></tr>
<tr class="memdesc:a35240c6a928bc9c763a5d26bd8f3072b"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function parses the string containing the date and time in ISO 8601 combined format <code>"YYYY-MM-DDTHH:MM:SS"</code>.  <a href="#a35240c6a928bc9c763a5d26bd8f3072b"></a><br/></td></tr>
<tr class="separator:a35240c6a928bc9c763a5d26bd8f3072b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a416e9e5e7395dd11a059cd116da7e6a2"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a416e9e5e7395dd11a059cd116da7e6a2">ParseISODate</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date)</td></tr>
<tr class="memdesc:a416e9e5e7395dd11a059cd116da7e6a2"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function parses the date in ISO 8601 format <code>"YYYY-MM-DD"</code>.  <a href="#a416e9e5e7395dd11a059cd116da7e6a2"></a><br/></td></tr>
<tr class="separator:a416e9e5e7395dd11a059cd116da7e6a2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc4c1fb178f73958b151eabd36625f59"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#adc4c1fb178f73958b151eabd36625f59">ParseISOTime</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date)</td></tr>
<tr class="memdesc:adc4c1fb178f73958b151eabd36625f59"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function parses the time in ISO 8601 format <code>"HH:MM:SS"</code>.  <a href="#adc4c1fb178f73958b151eabd36625f59"></a><br/></td></tr>
<tr class="separator:adc4c1fb178f73958b151eabd36625f59"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0f2485c52d0d3cf0196aaf0062d2f83"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab0f2485c52d0d3cf0196aaf0062d2f83">ParseRfc822Date</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;date, wxString::const_iterator *end)</td></tr>
<tr class="memdesc:ab0f2485c52d0d3cf0196aaf0062d2f83"><td class="mdescLeft">&#160;</td><td class="mdescRight">Parses the string <em>date</em> looking for a date formatted according to the RFC 822 in it.  <a href="#ab0f2485c52d0d3cf0196aaf0062d2f83"></a><br/></td></tr>
<tr class="separator:ab0f2485c52d0d3cf0196aaf0062d2f83"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac903b3227620e1b88019e76b807327e8"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ac903b3227620e1b88019e76b807327e8">ParseTime</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;time, wxString::const_iterator *end)</td></tr>
<tr class="memdesc:ac903b3227620e1b88019e76b807327e8"><td class="mdescLeft">&#160;</td><td class="mdescRight">This functions is like <a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485" title="Parses the string datetime containing the date and time in free format.">ParseDateTime()</a>, but only allows the time to be specified in the input string.  <a href="#ac903b3227620e1b88019e76b807327e8"></a><br/></td></tr>
<tr class="separator:ac903b3227620e1b88019e76b807327e8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader">Calendar Calculations</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>The functions in this section perform the basic calendar calculations, mostly related to the week days.</p>
<p>They allow to find the given week day in the week with given number (either in the month or in the year) and so on.</p>
<p>None of the functions in this section modify the time part of the <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a>, they only work with the date part of it. </p>
</div></td></tr>
<tr class="memitem:a87f1ede94cfcda2a8b2db7322432f2f2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a87f1ede94cfcda2a8b2db7322432f2f2">GetLastMonthDay</a> (<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month=<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a>, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>) const </td></tr>
<tr class="memdesc:a87f1ede94cfcda2a8b2db7322432f2f2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a6d6bc203c75e55188c03d60d88600494" title="Sets the date to the last day in the specified month (the current one by default).">SetToLastMonthDay()</a> was applied.  <a href="#a87f1ede94cfcda2a8b2db7322432f2f2"></a><br/></td></tr>
<tr class="separator:a87f1ede94cfcda2a8b2db7322432f2f2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a931022efed3491d720ebc9767acb9051"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a931022efed3491d720ebc9767acb9051">GetLastWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month=<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a>, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>)</td></tr>
<tr class="memdesc:a931022efed3491d720ebc9767acb9051"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a55182141a6235de19c0bae356994e6f0" title="The effect of calling this function is the same as of calling SetToWeekDay(-1, weekday, month, year).">SetToLastWeekDay()</a> was applied.  <a href="#a931022efed3491d720ebc9767acb9051"></a><br/></td></tr>
<tr class="separator:a931022efed3491d720ebc9767acb9051"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a948507060e1ca798a5c2ee10ddadd7f0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a948507060e1ca798a5c2ee10ddadd7f0">GetNextWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday) const </td></tr>
<tr class="memdesc:a948507060e1ca798a5c2ee10ddadd7f0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the copy of this object to which <a class="el" href="classwx_date_time.html#ab239f44b4d46001c5887f8a3680fa5c0" title="Sets the date so that it will be the first weekday following the current date.">SetToNextWeekDay()</a> was applied.  <a href="#a948507060e1ca798a5c2ee10ddadd7f0"></a><br/></td></tr>
<tr class="separator:a948507060e1ca798a5c2ee10ddadd7f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5a982f1f5674f694e4ae1df980fb1af6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a5a982f1f5674f694e4ae1df980fb1af6">GetPrevWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday) const </td></tr>
<tr class="memdesc:a5a982f1f5674f694e4ae1df980fb1af6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a798feefecc3c77cc64ba3e585b5ac704" title="Sets the date so that it will be the last weekday before the current date.">SetToPrevWeekDay()</a> was applied.  <a href="#a5a982f1f5674f694e4ae1df980fb1af6"></a><br/></td></tr>
<tr class="separator:a5a982f1f5674f694e4ae1df980fb1af6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a313aab54e44a9de99b6f0d0eef528aa7"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a313aab54e44a9de99b6f0d0eef528aa7">GetWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, int n=1, <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month=<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a>, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>) const </td></tr>
<tr class="memdesc:a313aab54e44a9de99b6f0d0eef528aa7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a4687372ebe55a6aded83de6a639cde95" title="Sets the date to the n-th weekday in the given month of the given year (the current month and year ar...">SetToWeekDay()</a> was applied.  <a href="#a313aab54e44a9de99b6f0d0eef528aa7"></a><br/></td></tr>
<tr class="separator:a313aab54e44a9de99b6f0d0eef528aa7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b3deaf8d044cb517c2fabc7a0a4e561"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a2b3deaf8d044cb517c2fabc7a0a4e561">GetWeekDayInSameWeek</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, <a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a> flags=<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a>) const </td></tr>
<tr class="memdesc:a2b3deaf8d044cb517c2fabc7a0a4e561"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a927cf1043514729227f07d244b208142" title="Adjusts the date so that it will still lie in the same week as before, but its week day will be the g...">SetToWeekDayInSameWeek()</a> was applied.  <a href="#a2b3deaf8d044cb517c2fabc7a0a4e561"></a><br/></td></tr>
<tr class="separator:a2b3deaf8d044cb517c2fabc7a0a4e561"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad96b754422ee7db5adcace39b4f2395e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ad96b754422ee7db5adcace39b4f2395e">GetYearDay</a> (<a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> yday) const </td></tr>
<tr class="memdesc:ad96b754422ee7db5adcace39b4f2395e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a857b73aa9271782744cd524bea373f3c" title="Sets the date to the day number yday in the same year (i.e. unlike the other functions, this one does not use the current year).">SetToYearDay()</a> was applied.  <a href="#ad96b754422ee7db5adcace39b4f2395e"></a><br/></td></tr>
<tr class="separator:ad96b754422ee7db5adcace39b4f2395e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d6bc203c75e55188c03d60d88600494"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a6d6bc203c75e55188c03d60d88600494">SetToLastMonthDay</a> (<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month=<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a>, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>)</td></tr>
<tr class="memdesc:a6d6bc203c75e55188c03d60d88600494"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date to the last day in the specified month (the current one by default).  <a href="#a6d6bc203c75e55188c03d60d88600494"></a><br/></td></tr>
<tr class="separator:a6d6bc203c75e55188c03d60d88600494"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55182141a6235de19c0bae356994e6f0"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a55182141a6235de19c0bae356994e6f0">SetToLastWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month=<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a>, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>)</td></tr>
<tr class="memdesc:a55182141a6235de19c0bae356994e6f0"><td class="mdescLeft">&#160;</td><td class="mdescRight">The effect of calling this function is the same as of calling <code>SetToWeekDay</code>(-1, weekday, month, year).  <a href="#a55182141a6235de19c0bae356994e6f0"></a><br/></td></tr>
<tr class="separator:a55182141a6235de19c0bae356994e6f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab239f44b4d46001c5887f8a3680fa5c0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab239f44b4d46001c5887f8a3680fa5c0">SetToNextWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday)</td></tr>
<tr class="memdesc:ab239f44b4d46001c5887f8a3680fa5c0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date so that it will be the first <em>weekday</em> following the current date.  <a href="#ab239f44b4d46001c5887f8a3680fa5c0"></a><br/></td></tr>
<tr class="separator:ab239f44b4d46001c5887f8a3680fa5c0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a798feefecc3c77cc64ba3e585b5ac704"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a798feefecc3c77cc64ba3e585b5ac704">SetToPrevWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday)</td></tr>
<tr class="memdesc:a798feefecc3c77cc64ba3e585b5ac704"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date so that it will be the last <em>weekday</em> before the current date.  <a href="#a798feefecc3c77cc64ba3e585b5ac704"></a><br/></td></tr>
<tr class="separator:a798feefecc3c77cc64ba3e585b5ac704"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4687372ebe55a6aded83de6a639cde95"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a4687372ebe55a6aded83de6a639cde95">SetToWeekDay</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, int n=1, <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month=<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a>, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>)</td></tr>
<tr class="memdesc:a4687372ebe55a6aded83de6a639cde95"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date to the <em>n-th</em> <em>weekday</em> in the given month of the given year (the current month and year are used by default).  <a href="#a4687372ebe55a6aded83de6a639cde95"></a><br/></td></tr>
<tr class="separator:a4687372ebe55a6aded83de6a639cde95"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a927cf1043514729227f07d244b208142"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a927cf1043514729227f07d244b208142">SetToWeekDayInSameWeek</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, <a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a> flags=<a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a>)</td></tr>
<tr class="memdesc:a927cf1043514729227f07d244b208142"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adjusts the date so that it will still lie in the same week as before, but its week day will be the given one.  <a href="#a927cf1043514729227f07d244b208142"></a><br/></td></tr>
<tr class="separator:a927cf1043514729227f07d244b208142"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a857b73aa9271782744cd524bea373f3c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a857b73aa9271782744cd524bea373f3c">SetToYearDay</a> (<a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> yday)</td></tr>
<tr class="memdesc:a857b73aa9271782744cd524bea373f3c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the date to the day number <em>yday</em> in the same year (i.e. unlike the other functions, this one does not use the current year).  <a href="#a857b73aa9271782744cd524bea373f3c"></a><br/></td></tr>
<tr class="separator:a857b73aa9271782744cd524bea373f3c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader">Astronomical/Historical Functions</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>Some degree of support for the date units used in astronomy and/or history is provided.</p>
<p>You can construct a <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> object from a JDN and you may also get its JDN, MJD or Rata Die number from it.</p>
<p>Related functions in other groups: <a class="el" href="classwx_date_time.html#aa2c38922eafec2a94fb5ee9221c0f6b9" title="Same as Set().">wxDateTime(double)</a>, <a class="el" href="classwx_date_time.html#acfaba2a9f0241f74aff4641304f0a8fb" title="Sets the date from the so-called Julian Day Number.">Set(double)</a> </p>
</div></td></tr>
<tr class="memitem:a0bde25a418d8a7fd3e6e6a4c3941e20f"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0bde25a418d8a7fd3e6e6a4c3941e20f">GetJDN</a> () const </td></tr>
<tr class="memdesc:a0bde25a418d8a7fd3e6e6a4c3941e20f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Synonym for <a class="el" href="classwx_date_time.html#af99c22cc0d4d7deaffbc3b998403b7d1" title="Returns the JDN corresponding to this date.">GetJulianDayNumber()</a>.  <a href="#a0bde25a418d8a7fd3e6e6a4c3941e20f"></a><br/></td></tr>
<tr class="separator:a0bde25a418d8a7fd3e6e6a4c3941e20f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af99c22cc0d4d7deaffbc3b998403b7d1"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#af99c22cc0d4d7deaffbc3b998403b7d1">GetJulianDayNumber</a> () const </td></tr>
<tr class="memdesc:af99c22cc0d4d7deaffbc3b998403b7d1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the JDN corresponding to this date.  <a href="#af99c22cc0d4d7deaffbc3b998403b7d1"></a><br/></td></tr>
<tr class="separator:af99c22cc0d4d7deaffbc3b998403b7d1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a28e2d20d224aedadad683a93d88c5c4e"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a28e2d20d224aedadad683a93d88c5c4e">GetMJD</a> () const </td></tr>
<tr class="memdesc:a28e2d20d224aedadad683a93d88c5c4e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Synonym for <a class="el" href="classwx_date_time.html#aec513fdaa56ec1f13ca9d1e3e48a485d" title="Returns the &quot;Modified Julian Day Number&quot; (MJD) which is, by definition, is equal to JDN - 2400000...">GetModifiedJulianDayNumber()</a>.  <a href="#a28e2d20d224aedadad683a93d88c5c4e"></a><br/></td></tr>
<tr class="separator:a28e2d20d224aedadad683a93d88c5c4e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aec513fdaa56ec1f13ca9d1e3e48a485d"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aec513fdaa56ec1f13ca9d1e3e48a485d">GetModifiedJulianDayNumber</a> () const </td></tr>
<tr class="memdesc:aec513fdaa56ec1f13ca9d1e3e48a485d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <em>"Modified Julian Day Number"</em> (MJD) which is, by definition, is equal to JDN - 2400000.5.  <a href="#aec513fdaa56ec1f13ca9d1e3e48a485d"></a><br/></td></tr>
<tr class="separator:aec513fdaa56ec1f13ca9d1e3e48a485d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab81c9b7069ad4eb91bafdc144a2baea6"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab81c9b7069ad4eb91bafdc144a2baea6">GetRataDie</a> () const </td></tr>
<tr class="memdesc:ab81c9b7069ad4eb91bafdc144a2baea6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the <em>Rata</em> Die number of this date.  <a href="#ab81c9b7069ad4eb91bafdc144a2baea6"></a><br/></td></tr>
<tr class="separator:ab81c9b7069ad4eb91bafdc144a2baea6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader">Time Zone and DST Support</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>Please see the <a class="el" href="overview_datetime.html#overview_datetime_timezones">time zone overview</a> for more information about time zones.</p>
<p>Normally, these functions should be rarely used.</p>
<p>Related functions in other groups: <a class="el" href="classwx_date_time.html#a968bb73469fdccd2903c671b435735d7" title="Get the beginning of DST for the given country in the given year (current one by default).">GetBeginDST()</a>, <a class="el" href="classwx_date_time.html#a8c811978a0390f54ffa6012931ecb1af" title="Returns the end of DST for the given country in the given year (current one by default).">GetEndDST()</a> </p>
</div></td></tr>
<tr class="memitem:a947daf50d898d95d063777c2cef27feb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a947daf50d898d95d063777c2cef27feb">FromTimezone</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz, bool noDST=false) const </td></tr>
<tr class="memdesc:a947daf50d898d95d063777c2cef27feb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transform the date from the given time zone to the local one.  <a href="#a947daf50d898d95d063777c2cef27feb"></a><br/></td></tr>
<tr class="separator:a947daf50d898d95d063777c2cef27feb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5478f06e2449d299c60ad98be6ca34a8"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a5478f06e2449d299c60ad98be6ca34a8">IsDST</a> (<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> country=<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a>) const </td></tr>
<tr class="memdesc:a5478f06e2449d299c60ad98be6ca34a8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the DST is applied for this date in the given country.  <a href="#a5478f06e2449d299c60ad98be6ca34a8"></a><br/></td></tr>
<tr class="separator:a5478f06e2449d299c60ad98be6ca34a8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a83cff1eb8079f9eef5c386a5701d8803"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a83cff1eb8079f9eef5c386a5701d8803">MakeFromTimezone</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz, bool noDST=false)</td></tr>
<tr class="memdesc:a83cff1eb8079f9eef5c386a5701d8803"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_date_time.html#a947daf50d898d95d063777c2cef27feb" title="Transform the date from the given time zone to the local one.">FromTimezone()</a> but modifies the object in place.  <a href="#a83cff1eb8079f9eef5c386a5701d8803"></a><br/></td></tr>
<tr class="separator:a83cff1eb8079f9eef5c386a5701d8803"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad6ce9eb1fb237eda8013695ebd531af1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ad6ce9eb1fb237eda8013695ebd531af1">MakeTimezone</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz, bool noDST=false)</td></tr>
<tr class="memdesc:ad6ce9eb1fb237eda8013695ebd531af1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the object in place to represent the date in another time zone.  <a href="#ad6ce9eb1fb237eda8013695ebd531af1"></a><br/></td></tr>
<tr class="separator:ad6ce9eb1fb237eda8013695ebd531af1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa7e62cebf49c1c6b765e70ec19caedc0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aa7e62cebf49c1c6b765e70ec19caedc0">MakeUTC</a> (bool noDST=false)</td></tr>
<tr class="memdesc:aa7e62cebf49c1c6b765e70ec19caedc0"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is the same as calling <a class="el" href="classwx_date_time.html#ad6ce9eb1fb237eda8013695ebd531af1" title="Modifies the object in place to represent the date in another time zone.">MakeTimezone()</a> with the argument <code>GMT0</code>.  <a href="#aa7e62cebf49c1c6b765e70ec19caedc0"></a><br/></td></tr>
<tr class="separator:aa7e62cebf49c1c6b765e70ec19caedc0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a254dff0f6fb8861216941dcc3d4fdc15"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a254dff0f6fb8861216941dcc3d4fdc15">ToTimezone</a> (const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;tz, bool noDST=false) const </td></tr>
<tr class="memdesc:a254dff0f6fb8861216941dcc3d4fdc15"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transform the date to the given time zone.  <a href="#a254dff0f6fb8861216941dcc3d4fdc15"></a><br/></td></tr>
<tr class="separator:a254dff0f6fb8861216941dcc3d4fdc15"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4bddd303b09cc47c7251b01ca49dc04c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a4bddd303b09cc47c7251b01ca49dc04c">ToUTC</a> (bool noDST=false) const </td></tr>
<tr class="memdesc:a4bddd303b09cc47c7251b01ca49dc04c"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is the same as calling <a class="el" href="classwx_date_time.html#a254dff0f6fb8861216941dcc3d4fdc15" title="Transform the date to the given time zone.">ToTimezone()</a> with the argument <code>GMT0</code>.  <a href="#a4bddd303b09cc47c7251b01ca49dc04c"></a><br/></td></tr>
<tr class="separator:a4bddd303b09cc47c7251b01ca49dc04c"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a52e2fe22ededf8aaf3922a3e8136ddb0"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a52e2fe22ededf8aaf3922a3e8136ddb0">ConvertYearToBC</a> (int year)</td></tr>
<tr class="memdesc:a52e2fe22ededf8aaf3922a3e8136ddb0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts the year in absolute notation (i.e. a number which can be negative, positive or zero) to the year in BC/AD notation.  <a href="#a52e2fe22ededf8aaf3922a3e8136ddb0"></a><br/></td></tr>
<tr class="separator:a52e2fe22ededf8aaf3922a3e8136ddb0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ef535b0db4eeb117858a5b31ac00ae5"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a9ef535b0db4eeb117858a5b31ac00ae5">GetAmPmStrings</a> (<a class="el" href="classwx_string.html">wxString</a> *am, <a class="el" href="classwx_string.html">wxString</a> *pm)</td></tr>
<tr class="memdesc:a9ef535b0db4eeb117858a5b31ac00ae5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the translations of the strings <code>AM</code> and <code>PM</code> used for time formatting for the current locale.  <a href="#a9ef535b0db4eeb117858a5b31ac00ae5"></a><br/></td></tr>
<tr class="separator:a9ef535b0db4eeb117858a5b31ac00ae5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a968bb73469fdccd2903c671b435735d7"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a968bb73469fdccd2903c671b435735d7">GetBeginDST</a> (int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>, <a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> country=<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a>)</td></tr>
<tr class="memdesc:a968bb73469fdccd2903c671b435735d7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the beginning of DST for the given country in the given year (current one by default).  <a href="#a968bb73469fdccd2903c671b435735d7"></a><br/></td></tr>
<tr class="separator:a968bb73469fdccd2903c671b435735d7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8c811978a0390f54ffa6012931ecb1af"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a8c811978a0390f54ffa6012931ecb1af">GetEndDST</a> (int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>, <a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> country=<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a>)</td></tr>
<tr class="memdesc:a8c811978a0390f54ffa6012931ecb1af"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the end of DST for the given country in the given year (current one by default).  <a href="#a8c811978a0390f54ffa6012931ecb1af"></a><br/></td></tr>
<tr class="separator:a8c811978a0390f54ffa6012931ecb1af"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa7da8657207e8872291e757bc6065b61"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aa7da8657207e8872291e757bc6065b61">GetCentury</a> (int year)</td></tr>
<tr class="memdesc:aa7da8657207e8872291e757bc6065b61"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the current century, i.e. first two digits of the year, in given calendar (only Gregorian is currently supported).  <a href="#aa7da8657207e8872291e757bc6065b61"></a><br/></td></tr>
<tr class="separator:aa7da8657207e8872291e757bc6065b61"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a92fb00b090bd665f4ba13d70738ecd4a"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a92fb00b090bd665f4ba13d70738ecd4a">GetCountry</a> ()</td></tr>
<tr class="memdesc:a92fb00b090bd665f4ba13d70738ecd4a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current default country.  <a href="#a92fb00b090bd665f4ba13d70738ecd4a"></a><br/></td></tr>
<tr class="separator:a92fb00b090bd665f4ba13d70738ecd4a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a729d7baff7dba54605946ea946597b71"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a729d7baff7dba54605946ea946597b71">GetCurrentMonth</a> (<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a> cal=<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a>)</td></tr>
<tr class="memdesc:a729d7baff7dba54605946ea946597b71"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the current month in given calendar (only Gregorian is currently supported).  <a href="#a729d7baff7dba54605946ea946597b71"></a><br/></td></tr>
<tr class="separator:a729d7baff7dba54605946ea946597b71"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f7702c3a3bd20f15efd8ae819c76041"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a7f7702c3a3bd20f15efd8ae819c76041">GetCurrentYear</a> (<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a> cal=<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a>)</td></tr>
<tr class="memdesc:a7f7702c3a3bd20f15efd8ae819c76041"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the current year in given calendar (only Gregorian is currently supported).  <a href="#a7f7702c3a3bd20f15efd8ae819c76041"></a><br/></td></tr>
<tr class="separator:a7f7702c3a3bd20f15efd8ae819c76041"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a836d364cdde8a69553613b457491e435"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a836d364cdde8a69553613b457491e435">GetEnglishMonthName</a> (<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month, <a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a> flags=<a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a>)</td></tr>
<tr class="memdesc:a836d364cdde8a69553613b457491e435"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the standard English name of the given month.  <a href="#a836d364cdde8a69553613b457491e435"></a><br/></td></tr>
<tr class="separator:a836d364cdde8a69553613b457491e435"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad9543420706df2f207dfcfbd3449b111"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ad9543420706df2f207dfcfbd3449b111">GetEnglishWeekDayName</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, <a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a> flags=<a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a>)</td></tr>
<tr class="memdesc:ad9543420706df2f207dfcfbd3449b111"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the standard English name of the given week day.  <a href="#ad9543420706df2f207dfcfbd3449b111"></a><br/></td></tr>
<tr class="separator:ad9543420706df2f207dfcfbd3449b111"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a85afc6bab234a485e7939e7fec941d76"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a85afc6bab234a485e7939e7fec941d76">GetMonthName</a> (<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month, <a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a> flags=<a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a>)</td></tr>
<tr class="memdesc:a85afc6bab234a485e7939e7fec941d76"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the full (default) or abbreviated name of the given month.  <a href="#a85afc6bab234a485e7939e7fec941d76"></a><br/></td></tr>
<tr class="separator:a85afc6bab234a485e7939e7fec941d76"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aafc0ca017777f402d3f60a53d5e1a70f"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#aafc0ca017777f402d3f60a53d5e1a70f">GetNumberOfDays</a> (int year, <a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a> cal=<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a>)</td></tr>
<tr class="memdesc:aafc0ca017777f402d3f60a53d5e1a70f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of days in the given year.  <a href="#aafc0ca017777f402d3f60a53d5e1a70f"></a><br/></td></tr>
<tr class="separator:aafc0ca017777f402d3f60a53d5e1a70f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1eba7b64affea1f43dda1cb9baf01c96"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a1eba7b64affea1f43dda1cb9baf01c96">GetNumberOfDays</a> (<a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> month, int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>, <a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a> cal=<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a>)</td></tr>
<tr class="memdesc:a1eba7b64affea1f43dda1cb9baf01c96"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of days in the given month of the given year.  <a href="#a1eba7b64affea1f43dda1cb9baf01c96"></a><br/></td></tr>
<tr class="separator:a1eba7b64affea1f43dda1cb9baf01c96"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a972ecfc13254561b3620719f673d1053"><td class="memItemLeft" align="right" valign="top">static time_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a972ecfc13254561b3620719f673d1053">GetTimeNow</a> ()</td></tr>
<tr class="memdesc:a972ecfc13254561b3620719f673d1053"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current time.  <a href="#a972ecfc13254561b3620719f673d1053"></a><br/></td></tr>
<tr class="separator:a972ecfc13254561b3620719f673d1053"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a52e8e2420a4ecfaeb0920c20af6f974a"><td class="memItemLeft" align="right" valign="top">static tm *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a52e8e2420a4ecfaeb0920c20af6f974a">GetTmNow</a> (struct tm *tm)</td></tr>
<tr class="memdesc:a52e8e2420a4ecfaeb0920c20af6f974a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current time broken down using the buffer whose address is passed to the function with <em>tm</em> to store the result.  <a href="#a52e8e2420a4ecfaeb0920c20af6f974a"></a><br/></td></tr>
<tr class="separator:a52e8e2420a4ecfaeb0920c20af6f974a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afc3dc3d2e1da6990b3bf4f8b552d0367"><td class="memItemLeft" align="right" valign="top">static tm *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#afc3dc3d2e1da6990b3bf4f8b552d0367">GetTmNow</a> ()</td></tr>
<tr class="memdesc:afc3dc3d2e1da6990b3bf4f8b552d0367"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current time broken down.  <a href="#afc3dc3d2e1da6990b3bf4f8b552d0367"></a><br/></td></tr>
<tr class="separator:afc3dc3d2e1da6990b3bf4f8b552d0367"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a766fa258f8e30e406489df23de54e29f"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a766fa258f8e30e406489df23de54e29f">GetWeekDayName</a> (<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday, <a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a> flags=<a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a>)</td></tr>
<tr class="memdesc:a766fa258f8e30e406489df23de54e29f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the full (default) or abbreviated name of the given week day.  <a href="#a766fa258f8e30e406489df23de54e29f"></a><br/></td></tr>
<tr class="separator:a766fa258f8e30e406489df23de54e29f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a52f2fcf206a4a78b3f3d36891263b4c9"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a52f2fcf206a4a78b3f3d36891263b4c9">IsDSTApplicable</a> (int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>, <a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> country=<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a>)</td></tr>
<tr class="memdesc:a52f2fcf206a4a78b3f3d36891263b4c9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if DST was used in the given year (the current one by default) in the given country.  <a href="#a52f2fcf206a4a78b3f3d36891263b4c9"></a><br/></td></tr>
<tr class="separator:a52f2fcf206a4a78b3f3d36891263b4c9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55f8149cfda08356431d6c36ef9c02dc"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a55f8149cfda08356431d6c36ef9c02dc">IsLeapYear</a> (int year=<a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a>, <a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a> cal=<a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a>)</td></tr>
<tr class="memdesc:a55f8149cfda08356431d6c36ef9c02dc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the <em>year</em> is a leap one in the specified calendar.  <a href="#a55f8149cfda08356431d6c36ef9c02dc"></a><br/></td></tr>
<tr class="separator:a55f8149cfda08356431d6c36ef9c02dc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a93292d73b18e4858735c13e754224dcb"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a93292d73b18e4858735c13e754224dcb">IsWestEuropeanCountry</a> (<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> country=<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a>)</td></tr>
<tr class="memdesc:a93292d73b18e4858735c13e754224dcb"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function returns <span class="literal">true</span> if the specified (or default) country is one of Western European ones.  <a href="#a93292d73b18e4858735c13e754224dcb"></a><br/></td></tr>
<tr class="separator:a93292d73b18e4858735c13e754224dcb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e6c37a0414bb4831e2cc03b37f498a2"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2">Now</a> ()</td></tr>
<tr class="memdesc:a6e6c37a0414bb4831e2cc03b37f498a2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the object corresponding to the current time.  <a href="#a6e6c37a0414bb4831e2cc03b37f498a2"></a><br/></td></tr>
<tr class="separator:a6e6c37a0414bb4831e2cc03b37f498a2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ad5b532c62dd26784bb51366a27ca8d"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a5ad5b532c62dd26784bb51366a27ca8d">SetCountry</a> (<a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> country)</td></tr>
<tr class="memdesc:a5ad5b532c62dd26784bb51366a27ca8d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the country to use by default.  <a href="#a5ad5b532c62dd26784bb51366a27ca8d"></a><br/></td></tr>
<tr class="separator:a5ad5b532c62dd26784bb51366a27ca8d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab91c82e85621326436f2931660434719"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#ab91c82e85621326436f2931660434719">SetToWeekOfYear</a> (int year, <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> numWeek, <a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> weekday=<a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457ac165afc62596e609922e423ba262fe56">Mon</a>)</td></tr>
<tr class="memdesc:ab91c82e85621326436f2931660434719"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the date to the given <em>weekday</em> in the week number <em>numWeek</em> of the given <em>year</em> .  <a href="#ab91c82e85621326436f2931660434719"></a><br/></td></tr>
<tr class="separator:ab91c82e85621326436f2931660434719"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af730202238b9acd5a5df2977fa40c569"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#af730202238b9acd5a5df2977fa40c569">Today</a> ()</td></tr>
<tr class="memdesc:af730202238b9acd5a5df2977fa40c569"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the object corresponding to the midnight of the current day (i.e. the same as <a class="el" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2" title="Returns the object corresponding to the current time.">Now()</a>, but the time part is set to 0).  <a href="#af730202238b9acd5a5df2977fa40c569"></a><br/></td></tr>
<tr class="separator:af730202238b9acd5a5df2977fa40c569"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0db1c9bac7b2d27d589cad2a38d1438c"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_date_time.html">wxDateTime</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_date_time.html#a0db1c9bac7b2d27d589cad2a38d1438c">UNow</a> ()</td></tr>
<tr class="memdesc:a0db1c9bac7b2d27d589cad2a38d1438c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the object corresponding to the current UTC time including the milliseconds.  <a href="#a0db1c9bac7b2d27d589cad2a38d1438c"></a><br/></td></tr>
<tr class="separator:a0db1c9bac7b2d27d589cad2a38d1438c"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Member Typedef Documentation</h2>
<a class="anchor" id="a27df9e32a320a1ca266288d1a436de98"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef unsigned short <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime::wxDateTime_t</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>A small unsigned integer type for storing things like minutes, seconds &amp;c. </p>
<p>It should be at least short (i.e. not char) to contain the number of milliseconds - it may also be 'int' because there is no size penalty associated with it in our code, we don't store any data in this format. </p>

</div>
</div>
<h2 class="groupheader">Member Enumeration Documentation</h2>
<a class="anchor" id="ab2c1717e9dff5256cc01f917a5b7f70c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">wxDateTime::Calendar</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Several functions accept an extra parameter specifying the calendar to use (although most of them only support now the Gregorian calendar). </p>
<p>This parameters is one of the following values. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91"></a>Gregorian</em>&nbsp;</td><td>
<p>calendar currently in use in Western countries </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="ab2c1717e9dff5256cc01f917a5b7f70cad5691423a7e252a4d910bca3d0cec255"></a>Julian</em>&nbsp;</td><td>
<p>calendar in use since -45 until the 1582 (or later) </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">wxDateTime::Country</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Date calculations often depend on the country and <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> allows to set the country whose conventions should be used using <a class="el" href="classwx_date_time.html#a5ad5b532c62dd26784bb51366a27ca8d" title="Sets the country to use by default.">SetCountry()</a>. </p>
<p>It takes one of the following values as parameter. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126a5cbf87e9f28cd4beba788133300cf7c5"></a>Country_Unknown</em>&nbsp;</td><td>
<p>no special information for this country </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73"></a>Country_Default</em>&nbsp;</td><td>
<p>set the default country with <a class="el" href="classwx_date_time.html#a5ad5b532c62dd26784bb51366a27ca8d" title="Sets the country to use by default.">SetCountry()</a> method or use the default country with any other </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126a1d35fe658dea7b60aaa6f28cde913edf"></a>Country_WesternEurope_Start</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126a78947f08ad10bb3a9c910c7dc86bf26b"></a>Country_EEC</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126a9910b3f8af50b8b1d863c04a648cc37c"></a>France</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126ad2ede5cdb83afee5880b1056f544fece"></a>Germany</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126ac01fceffd3df9ab202cc5eb74222467d"></a>UK</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126ac30477024e48c71e9c8294ec848d5ed9"></a>Country_WesternEurope_End</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126a49f7126bc437d2c05cd5f8ff63c268e4"></a>Russia</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="abdd3b3e656f92a4923c3ddf2026ed126ad0e27ed2327558c6b86b924f37238979"></a>USA</em>&nbsp;</td><td>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">wxDateTime::Month</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>symbolic names for the months </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a53cc4760da18147518a448ba0da7a85d"></a>Jan</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a6b7a64ef7274382828d3bc1f8836453b"></a>Feb</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117af83cf0954521af250e7ecab93d115050"></a>Mar</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a1ac72d9221b60bf38c2a0d8ef08c7871"></a>Apr</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a71835f9fa0eb5c48da47452c93bf5e6b"></a>May</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a16a1fa0ab2bc344d3841909728be3f96"></a>Jun</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a495d4f30dde1a1adbff6653b12c384d5"></a>Jul</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a7d7b04f514f525794fcbcf715022968a"></a>Aug</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a7028d6990bff742f5f92387f91438884"></a>Sep</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a553f38557712cd32124ffe521573f2cb"></a>Oct</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117a013eb4a34e3323d234babe378d011706"></a>Nov</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117ac3f2d56832e6af3d54685a6ab81072eb"></a>Dec</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831"></a>Inv_Month</em>&nbsp;</td><td>
<p>Invalid month value. </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="a49326e6533b05df469ac7c5ff2af78b7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">wxDateTime::NameFlags</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Flags to be used with <a class="el" href="classwx_date_time.html#a85afc6bab234a485e7939e7fec941d76" title="Gets the full (default) or abbreviated name of the given month.">GetMonthName()</a> and <a class="el" href="classwx_date_time.html#a766fa258f8e30e406489df23de54e29f" title="Gets the full (default) or abbreviated name of the given week day.">GetWeekDayName()</a> functions. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89"></a>Name_Full</em>&nbsp;</td><td>
<p>return full name </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a49326e6533b05df469ac7c5ff2af78b7afde586e7e109fd5725b2e7c69f604b69"></a>Name_Abbr</em>&nbsp;</td><td>
<p>return abbreviated name </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bb">wxDateTime::TZ</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Time zone symbolic names. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8"></a>Local</em>&nbsp;</td><td>
<p>the time in the current time zone </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba87b4b5dd24a2f226d58845a617c9053d"></a>GMT_12</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba557c461adc9d42d4616918de09322374"></a>GMT_11</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba0b1be6322c3d8fd8a69f92becd90ef92"></a>GMT_10</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba92f26e662b9b6fe85e9129b01792405c"></a>GMT_9</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba399a20c6a1a04a0104db4dffe3e97c58"></a>GMT_8</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba7663c300529ca4254900540cecb0b0ce"></a>GMT_7</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba827233a73b3dcb35764873db1e25bfc6"></a>GMT_6</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba9934f36511c6ed34de0a94d5d553a07b"></a>GMT_5</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba2af42038185283cfb9c2e32ae658510e"></a>GMT_4</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba1adb33fc9a930f9f0b9f8a009eb93e2b"></a>GMT_3</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbac62a008b6600cbb068a7d887e839d6a9"></a>GMT_2</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbaff8e187024b6a0331ed17cc9cf54afc9"></a>GMT_1</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba2120dec8c0b1cd718dac28c2d31febe1"></a>GMT0</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba53cced34a141bad15c02769461b0f4ce"></a>GMT1</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba9e7b73170b341b26a3945980376ad0eb"></a>GMT2</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba5b1f37e6ee84cf7ef93e9d98012a4829"></a>GMT3</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba90bc724fa31f2917b7126417132975d5"></a>GMT4</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba4a9d4c0b24aa6223b89c0b998e7a7d72"></a>GMT5</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba9d2a38d213d85f81de337e8f0eb14b3e"></a>GMT6</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba05a789a91aa72ac3077951a6c61a66aa"></a>GMT7</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbacb72b7396d5f75461f2cee0de06999d2"></a>GMT8</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbacf5ea594d20d5df0bebb1f148d648206"></a>GMT9</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbab562c8c00f2773622b9d540bdc381366"></a>GMT10</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbaf0545ec1a575e8e6f0acb97722b591c4"></a>GMT11</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbae8ea01bdd4301a68cbdbc749701a5d79"></a>GMT12</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbaa8b779df126c68b0137a0e9be836ff5d"></a>GMT13</em>&nbsp;</td><td>
<p>zones from GMT (= Greenwich Mean Time): they're guaranteed to be consequent numbers, so writing something like `GMT0 + offset' is safe if abs(offset) &lt;= 12 </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbad1bb3e8d84a7cd92efabe75a088862ef"></a>WET</em>&nbsp;</td><td>
<p>Western Europe Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbad85e6d8f2aaa3f603c2bfc58d84edb7a"></a>WEST</em>&nbsp;</td><td>
<p>Western Europe Summer Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba768e71f1f3c63c6cf64dd9c9a0f20b0b"></a>CET</em>&nbsp;</td><td>
<p>Central Europe Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbae628c26f3f2a2f404c38f3d8c4d878d5"></a>CEST</em>&nbsp;</td><td>
<p>Central Europe Summer Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba8f0093ca02fad238db726c3ed8ec4c19"></a>EET</em>&nbsp;</td><td>
<p>Eastern Europe Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba467f28d0dea96f56ae233215d720c9b3"></a>EEST</em>&nbsp;</td><td>
<p>Eastern Europe Summer Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbafc28b9d52780f1a55d8a4a4f2075674d"></a>MSK</em>&nbsp;</td><td>
<p>Moscow Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba30e029fadbdec932db6db3b7f9eb461e"></a>MSD</em>&nbsp;</td><td>
<p>Moscow Summer Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba930fed7e2cfbc9d6ad9698d74aec7a3f"></a>AST</em>&nbsp;</td><td>
<p>Atlantic Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba70b32b6b2daef8c065fe3f7e81ac155f"></a>ADT</em>&nbsp;</td><td>
<p>Atlantic Daylight Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba20a03ab3f22b9c12c6a12f55f69af885"></a>EST</em>&nbsp;</td><td>
<p>Eastern Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba268100e90a290659a27f1daa2ffef118"></a>EDT</em>&nbsp;</td><td>
<p>Eastern Daylight Saving Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba5d3264d3bb4106df8a0f68b306f363bf"></a>CST</em>&nbsp;</td><td>
<p>Central Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbad526ab66e38a7141bdd9a82098684303"></a>CDT</em>&nbsp;</td><td>
<p>Central Daylight Saving Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba56d4091091fe350486bd2bafde5469a0"></a>MST</em>&nbsp;</td><td>
<p>Mountain Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba7f09567fdbe8c0f2d9ca6b2b5ab3b92a"></a>MDT</em>&nbsp;</td><td>
<p>Mountain Daylight Saving Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba9ef77e9f8a8423f55ddaf3c65f6f4de5"></a>PST</em>&nbsp;</td><td>
<p>Pacific Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba63f8efe7f2da52ba952daa48a2df8ad8"></a>PDT</em>&nbsp;</td><td>
<p>Pacific Daylight Saving Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba19b49f77ce14e8456f6ba311d5323c51"></a>HST</em>&nbsp;</td><td>
<p>Hawaiian Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbae0007943414383bc2d6d50b56080ffee"></a>AKST</em>&nbsp;</td><td>
<p>Alaska Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba3ccd7ea3db468da45836d2a2c66e9069"></a>AKDT</em>&nbsp;</td><td>
<p>Alaska Daylight Saving Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbab1b9c891ddf8d11322b9a6260131514a"></a>A_WST</em>&nbsp;</td><td>
<p>Western Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba10a8880abe7d55c0e28c41badf1a3857"></a>A_CST</em>&nbsp;</td><td>
<p>Central Standard Time (+9.5) </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba30efbb5a9aaf55f7ae3d0b06eafb9ee4"></a>A_EST</em>&nbsp;</td><td>
<p>Eastern Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba09b72a5bdfbec3d2e22153ee0ae585c2"></a>A_ESST</em>&nbsp;</td><td>
<p>Eastern Summer Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bbab65d681d65687315d5e8f5160e2d375d"></a>NZST</em>&nbsp;</td><td>
<p>Standard Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba50981f4a9aa23c5765bbf82a31353d9c"></a>NZDT</em>&nbsp;</td><td>
<p>Daylight Saving Time. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a4db12283a6c06cea4c92528fbb7f88bba7c42813bc6ce147bb073c5783cbce8bb"></a>UTC</em>&nbsp;</td><td>
<p>Universal Coordinated Time = the new and politically correct name for GMT. </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">wxDateTime::WeekDay</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>symbolic names for the weekdays </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457aecc652810e8944beafed362de118d631"></a>Sun</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457ac165afc62596e609922e423ba262fe56"></a>Mon</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457ae1277871c9d23518b6137b9d9b005138"></a>Tue</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457a3edaead476323f6fa7d6dea1e8b193b3"></a>Wed</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457aefdce3348770a8e30443bd559cd272e9"></a>Thu</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457a5de545a0b8d10a527499d25a2308c687"></a>Fri</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457a1fb68aa3f50f920bc1b1d835f1e0eb73"></a>Sat</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a9ce844e5c79b28711f52ae2d9a571457a7bf2467543ea4311ceede8d992829f2c"></a>Inv_WeekDay</em>&nbsp;</td><td>
<p>Invalid week day value. </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="a8ab175ce5385f833894d9b89987a90d4"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">wxDateTime::WeekFlags</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Different parts of the world use different conventions for the week start. </p>
<p>In some countries, the week starts on Sunday, while in others &ndash; on Monday. The ISO standard doesn't address this issue, so we support both conventions in the functions whose result depends on it (<a class="el" href="classwx_date_time.html#aeb92e6f6fdd172850a759fda324c87fb" title="Returns the number of the week of the year this date is in.">GetWeekOfYear()</a> and <a class="el" href="classwx_date_time.html#ac2e541595f16d6f48db34b489a5d1ce9" title="Returns the ordinal number of the week in the month (in 1-5 range).">GetWeekOfMonth()</a>).</p>
<p>The desired behaviour may be specified by giving one of the following constants as argument to these functions. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a8ab175ce5385f833894d9b89987a90d4a7cf7c63a175ce5bf63e9396655e32a22"></a>Default_First</em>&nbsp;</td><td>
<p>Sunday_First for US, Monday_First for the rest. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9"></a>Monday_First</em>&nbsp;</td><td>
<p>week starts with a Monday </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a8ab175ce5385f833894d9b89987a90d4a06956cc8c60835143abeccda7c183471"></a>Sunday_First</em>&nbsp;</td><td>
<p>week starts with a Sunday </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="a4f9ba1f993835bc0096f8811f92f5d79"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79">wxDateTime::Year</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>invalid value for the year </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071"></a>Inv_Year</em>&nbsp;</td><td>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a4cc372429453a21632d64f34f635d853"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Default constructor. </p>
<p>Use one of the <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a> functions to initialize the object later. </p>

</div>
</div>
<a class="anchor" id="aca2bc3b942d920e01e496841bd759001"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Copy constructor. </p>

</div>
</div>
<a class="anchor" id="af389cfd683905c7bd26d78ed2830f8d3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramtype">time_t&#160;</td>
          <td class="paramname"><em>timet</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>. </p>

</div>
</div>
<a class="anchor" id="af060ddc94177492d3cedf60f9e17224a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramtype">const struct tm &amp;&#160;</td>
          <td class="paramname"><em>tm</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>. </p>

</div>
</div>
<a class="anchor" id="aa2c38922eafec2a94fb5ee9221c0f6b9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>jdn</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>. </p>

</div>
</div>
<a class="anchor" id="a929b59bfd0b445d2bd2e5e2b58767c18"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>hour</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>minute</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>second</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>millisec</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>. </p>

</div>
</div>
<a class="anchor" id="a8e4a6d1104d1882514679514e3dbc642"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>day</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>hour</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>minute</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>second</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>millisec</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>. </p>

</div>
</div>
<a class="anchor" id="a7d16ccd02f0c98f0667f57376da89da7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxDateTime::wxDateTime </td>
          <td>(</td>
          <td class="paramtype">const struct _SYSTEMTIME &amp;&#160;</td>
          <td class="paramname"><em>st</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as SetFromMSWSysTime. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">st</td><td>Input, Windows SYSTEMTIME reference </td></tr>
  </table>
  </dd>
</dl>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>
<dl class="section remark"><dt>Remarks</dt><dd>MSW only <div><span class="avail">Availability:</span>&#160;&#160;only available for the <a class="el" href="page_port.html#page_port_wxmsw">wxMSW</a> port.</div>  </dd></dl>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a53c8d4e51a784a64b374124a60921f27"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::Add </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given date span to this object. </p>

</div>
</div>
<a class="anchor" id="ae8b0586b1d0a83fe520ec87736cd210b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Add </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given date span to this object. </p>

</div>
</div>
<a class="anchor" id="a8cb13e8a953a8061fba8c718929beaa3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::Add </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given time span to this object. </p>

</div>
</div>
<a class="anchor" id="a36c3dfb82a3fdf9c0e4c8cc944508d0d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Add </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given time span to this object. </p>

</div>
</div>
<a class="anchor" id="a52e2fe22ededf8aaf3922a3e8136ddb0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static int wxDateTime::ConvertYearToBC </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Converts the year in absolute notation (i.e. a number which can be negative, positive or zero) to the year in BC/AD notation. </p>
<p>For the positive years, nothing is done, but the year 0 is year 1 BC and so for other years there is a difference of 1.</p>
<p>This function should be used like this:</p>
<div class="fragment"><div class="line"><a class="code" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> dt(...);</div>
<div class="line"><span class="keywordtype">int</span> y = dt.GetYear();</div>
<div class="line">printf(<span class="stringliteral">&quot;The year is %d%s&quot;</span>, <a class="code" href="classwx_date_time.html#a52e2fe22ededf8aaf3922a3e8136ddb0" title="Converts the year in absolute notation (i.e. a number which can be negative, positive or zero) to the...">wxDateTime::ConvertYearToBC</a>(y), y &gt; 0 ? <span class="stringliteral">&quot;AD&quot;</span> : <span class="stringliteral">&quot;BC&quot;</span>);</div>
</div><!-- fragment --> 
</div>
</div>
<a class="anchor" id="afac1ab9627e16a96a5634fe9a16cbe6d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_span.html">wxDateSpan</a> wxDateTime::DiffAsDateSpan </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>dt</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the difference between this object and <em>dt</em> as a <a class="el" href="classwx_date_span.html" title="This class is a &quot;logical time span&quot; and is useful for implementing program logic for such things as...">wxDateSpan</a>. </p>
<p>This method allows to find the number of entire years, months, weeks and days between <em>dt</em> and this date.</p>
<dl class="section since"><dt>Since</dt><dd>2.9.5 </dd></dl>

</div>
</div>
<a class="anchor" id="a32377f43a31e29ad4fe70f299650c5f8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxDateTime::Format </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>format</em> = <code>wxDefaultDateTimeFormat</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function does the same as the standard ANSI C <code>strftime(3)</code> function (<a href="http://www.cplusplus.com/reference/clibrary/ctime/strftime.html">http://www.cplusplus.com/reference/clibrary/ctime/strftime.html</a>). </p>
<p>Please see its description for the meaning of <em>format</em> parameter.</p>
<p>Notice that POSIX <code>"%g"</code>, <code>"%G"</code>, <code>"%V"</code> and <code>"%z"</code> format specifiers are supported even if the standard library doesn't support them (e.g. MSVC).</p>
<p>It also accepts a few wxWidgets-specific extensions: you can optionally specify the width of the field to follow using <code>printf(3)-like</code> syntax and the format specification <code>"%l"</code> can be used to get the number of milliseconds.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b" title="This function parses the string date according to the given format.">ParseFormat()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ab9886b69761a87ccf77f0ffee7c7f12e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxDateTime::FormatDate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Identical to calling <a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a> with <code>"%x"</code> argument (which means "preferred date representation for the current locale"). </p>

</div>
</div>
<a class="anchor" id="a8d99cfc519de33d2fcf16360a13212f0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxDateTime::FormatISOCombined </td>
          <td>(</td>
          <td class="paramtype">char&#160;</td>
          <td class="paramname"><em>sep</em> = <code>'T'</code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the combined date-time representation in the ISO 8601 format <code>"YYYY-MM-DDTHH:MM:SS"</code>. </p>
<p>The <em>sep</em> parameter default value produces the result exactly corresponding to the ISO standard, but it can also be useful to use a space as separator if a more human-readable combined date-time representation is needed.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a7dc79585261a999dbd43152186e52299" title="This function returns the date representation in the ISO 8601 format &quot;YYYY-MM-DD&quot;.">FormatISODate()</a>, <a class="el" href="classwx_date_time.html#a0f677ffcbc651c733249af36af6bbb3b" title="This function returns the time representation in the ISO 8601 format &quot;HH:MM:SS&quot;.">FormatISOTime()</a>, <a class="el" href="classwx_date_time.html#a35240c6a928bc9c763a5d26bd8f3072b" title="This function parses the string containing the date and time in ISO 8601 combined format &quot;YYYY-MM-DDT...">ParseISOCombined()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a7dc79585261a999dbd43152186e52299"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxDateTime::FormatISODate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function returns the date representation in the ISO 8601 format <code>"YYYY-MM-DD"</code>. </p>

</div>
</div>
<a class="anchor" id="a0f677ffcbc651c733249af36af6bbb3b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxDateTime::FormatISOTime </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function returns the time representation in the ISO 8601 format <code>"HH:MM:SS"</code>. </p>

</div>
</div>
<a class="anchor" id="a4d3145af33faf443ac9d9fdfc4256c1e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxDateTime::FormatTime </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Identical to calling <a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a> with <code>"%X"</code> argument (which means "preferred time representation for the current locale"). </p>

</div>
</div>
<a class="anchor" id="a947daf50d898d95d063777c2cef27feb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::FromTimezone </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>noDST</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Transform the date from the given time zone to the local one. </p>
<p>If <em>noDST</em> is <span class="literal">true</span>, no DST adjustments will be made.</p>
<dl class="section return"><dt>Returns</dt><dd>The date in the local time zone. </dd></dl>

</div>
</div>
<a class="anchor" id="a9ef535b0db4eeb117858a5b31ac00ae5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static void wxDateTime::GetAmPmStrings </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_string.html">wxString</a> *&#160;</td>
          <td class="paramname"><em>am</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_string.html">wxString</a> *&#160;</td>
          <td class="paramname"><em>pm</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the translations of the strings <code>AM</code> and <code>PM</code> used for time formatting for the current locale. </p>
<p>Either of the pointers may be <span class="literal">NULL</span> if the corresponding value is not needed. </p>

</div>
</div>
<a class="anchor" id="a66aebd04f50f468049f17e8159e69a6a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">unsigned long wxDateTime::GetAsDOS </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the date and time in DOS format. </p>

</div>
</div>
<a class="anchor" id="ae40a8c0a37d06ac476d856827e5176d8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxDateTime::GetAsMSWSysTime </td>
          <td>(</td>
          <td class="paramtype">struct _SYSTEMTIME *&#160;</td>
          <td class="paramname"><em>st</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the date and time in the Windows SYSTEMTIME format. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">st</td><td>Output, pointer to Windows SYSTEMTIME </td></tr>
  </table>
  </dd>
</dl>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>
<dl class="section remark"><dt>Remarks</dt><dd>MSW only <div><span class="avail">Availability:</span>&#160;&#160;only available for the <a class="el" href="page_port.html#page_port_wxmsw">wxMSW</a> port.</div>  </dd></dl>

</div>
</div>
<a class="anchor" id="a968bb73469fdccd2903c671b435735d7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetBeginDST </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td>
          <td class="paramname"><em>country</em> = <code><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Get the beginning of DST for the given country in the given year (current one by default). </p>
<p>This function suffers from limitations described in the <a class="el" href="overview_datetime.html#overview_datetime_dst">DST overview</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a8c811978a0390f54ffa6012931ecb1af" title="Returns the end of DST for the given country in the given year (current one by default).">GetEndDST()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="acc8f531061b26803b921e20e19faaea1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxDateTime::GetCentury </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the century of this date. </p>

</div>
</div>
<a class="anchor" id="aa7da8657207e8872291e757bc6065b61"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static int wxDateTime::GetCentury </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Get the current century, i.e. first two digits of the year, in given calendar (only Gregorian is currently supported). </p>

</div>
</div>
<a class="anchor" id="a92fb00b090bd665f4ba13d70738ecd4a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a> wxDateTime::GetCountry </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the current default country. </p>
<p>The default country is used for DST calculations, for example.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a5ad5b532c62dd26784bb51366a27ca8d" title="Sets the country to use by default.">SetCountry()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a729d7baff7dba54605946ea946597b71"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> wxDateTime::GetCurrentMonth </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a>&#160;</td>
          <td class="paramname"><em>cal</em> = <code><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a></code></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Get the current month in given calendar (only Gregorian is currently supported). </p>

</div>
</div>
<a class="anchor" id="a7f7702c3a3bd20f15efd8ae819c76041"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static int wxDateTime::GetCurrentYear </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a>&#160;</td>
          <td class="paramname"><em>cal</em> = <code><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a></code></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Get the current year in given calendar (only Gregorian is currently supported). </p>

</div>
</div>
<a class="anchor" id="a3b341c8cb0e343d3b7f9db929c7b4830"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetDateOnly </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the object having the same date component as this one but time of 00:00:00. </p>
<dl class="section since"><dt>Since</dt><dd>2.8.2</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a1975ca9c72d4fb89050566849776d3b2" title="Reset time to midnight (00:00:00) without changing the date.">ResetTime()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a6ce5fca7b6e7cc7a230e4595d52fb8ed"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">unsigned short wxDateTime::GetDay </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the day in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="a0242e2ec46f3345576bce53354cf5e6a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">unsigned short wxDateTime::GetDayOfYear </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the day of the year (in 1-366 range) in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="a8c811978a0390f54ffa6012931ecb1af"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetEndDST </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td>
          <td class="paramname"><em>country</em> = <code><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the end of DST for the given country in the given year (current one by default). </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a968bb73469fdccd2903c671b435735d7" title="Get the beginning of DST for the given country in the given year (current one by default).">GetBeginDST()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a836d364cdde8a69553613b457491e435"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_string.html">wxString</a> wxDateTime::GetEnglishMonthName </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Return the standard English name of the given month. </p>
<p>This function always returns "January" or "Jan" for January, use <a class="el" href="classwx_date_time.html#a85afc6bab234a485e7939e7fec941d76" title="Gets the full (default) or abbreviated name of the given month.">GetMonthName()</a> to retrieve the name of the month in the users current locale.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">month</td><td>One of <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a53cc4760da18147518a448ba0da7a85d">wxDateTime::Jan</a>, ..., <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ac3f2d56832e6af3d54685a6ab81072eb">wxDateTime::Dec</a> values. </td></tr>
    <tr><td class="paramname">flags</td><td>Either Name_Full (default) or Name_Abbr.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#ad9543420706df2f207dfcfbd3449b111" title="Return the standard English name of the given week day.">GetEnglishWeekDayName()</a></dd></dl>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>

</div>
</div>
<a class="anchor" id="ad9543420706df2f207dfcfbd3449b111"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_string.html">wxString</a> wxDateTime::GetEnglishWeekDayName </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Return the standard English name of the given week day. </p>
<p>This function always returns "Monday" or "Mon" for Monday, use <a class="el" href="classwx_date_time.html#a766fa258f8e30e406489df23de54e29f" title="Gets the full (default) or abbreviated name of the given week day.">GetWeekDayName()</a> to retrieve the name of the month in the users current locale.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">weekday</td><td>One of <a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457aecc652810e8944beafed362de118d631">wxDateTime::Sun</a>, ..., <a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457a1fb68aa3f50f920bc1b1d835f1e0eb73">wxDateTime::Sat</a> values. </td></tr>
    <tr><td class="paramname">flags</td><td>Either Name_Full (default) or Name_Abbr.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a836d364cdde8a69553613b457491e435" title="Return the standard English name of the given month.">GetEnglishMonthName()</a></dd></dl>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>

</div>
</div>
<a class="anchor" id="a0c07232d5f21ba2ede2a4751f3531c1a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">unsigned short wxDateTime::GetHour </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the hour in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="a0bde25a418d8a7fd3e6e6a4c3941e20f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double wxDateTime::GetJDN </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Synonym for <a class="el" href="classwx_date_time.html#af99c22cc0d4d7deaffbc3b998403b7d1" title="Returns the JDN corresponding to this date.">GetJulianDayNumber()</a>. </p>

</div>
</div>
<a class="anchor" id="af99c22cc0d4d7deaffbc3b998403b7d1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double wxDateTime::GetJulianDayNumber </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the JDN corresponding to this date. </p>
<p>Beware of rounding errors!</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#aec513fdaa56ec1f13ca9d1e3e48a485d" title="Returns the &quot;Modified Julian Day Number&quot; (MJD) which is, by definition, is equal to JDN - 2400000...">GetModifiedJulianDayNumber()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a87f1ede94cfcda2a8b2db7322432f2f2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetLastMonthDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em> = <code><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a6d6bc203c75e55188c03d60d88600494" title="Sets the date to the last day in the specified month (the current one by default).">SetToLastMonthDay()</a> was applied. </p>

</div>
</div>
<a class="anchor" id="a931022efed3491d720ebc9767acb9051"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetLastWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em> = <code><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a55182141a6235de19c0bae356994e6f0" title="The effect of calling this function is the same as of calling SetToWeekDay(-1, weekday, month, year).">SetToLastWeekDay()</a> was applied. </p>

</div>
</div>
<a class="anchor" id="a9ae6607047e0e0971e1f6e02fbaf12d4"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">unsigned short wxDateTime::GetMillisecond </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the milliseconds in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="ad78c55f442700463a58e3f57054c61e8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">unsigned short wxDateTime::GetMinute </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the minute in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="a28e2d20d224aedadad683a93d88c5c4e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double wxDateTime::GetMJD </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Synonym for <a class="el" href="classwx_date_time.html#aec513fdaa56ec1f13ca9d1e3e48a485d" title="Returns the &quot;Modified Julian Day Number&quot; (MJD) which is, by definition, is equal to JDN - 2400000...">GetModifiedJulianDayNumber()</a>. </p>

</div>
</div>
<a class="anchor" id="aec513fdaa56ec1f13ca9d1e3e48a485d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double wxDateTime::GetModifiedJulianDayNumber </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the <em>"Modified Julian Day Number"</em> (MJD) which is, by definition, is equal to JDN - 2400000.5. </p>
<p>The MJDs are simpler to work with as the integral MJDs correspond to midnights of the dates in the Gregorian calendar and not the noons like JDN. The MJD 0 represents Nov 17, 1858. </p>

</div>
</div>
<a class="anchor" id="a7e1316e87a89b31a2b72958201105061"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a> wxDateTime::GetMonth </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the month in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="a85afc6bab234a485e7939e7fec941d76"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_string.html">wxString</a> wxDateTime::GetMonthName </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Gets the full (default) or abbreviated name of the given month. </p>
<p>This function returns the name in the current locale, use <a class="el" href="classwx_date_time.html#a836d364cdde8a69553613b457491e435" title="Return the standard English name of the given month.">GetEnglishMonthName()</a> to get the untranslated name if necessary.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">month</td><td>One of <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117a53cc4760da18147518a448ba0da7a85d">wxDateTime::Jan</a>, ..., <a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ac3f2d56832e6af3d54685a6ab81072eb">wxDateTime::Dec</a> values. </td></tr>
    <tr><td class="paramname">flags</td><td>Either Name_Full (default) or Name_Abbr.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a766fa258f8e30e406489df23de54e29f" title="Gets the full (default) or abbreviated name of the given week day.">GetWeekDayName()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a948507060e1ca798a5c2ee10ddadd7f0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetNextWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the copy of this object to which <a class="el" href="classwx_date_time.html#ab239f44b4d46001c5887f8a3680fa5c0" title="Sets the date so that it will be the first weekday following the current date.">SetToNextWeekDay()</a> was applied. </p>

</div>
</div>
<a class="anchor" id="aafc0ca017777f402d3f60a53d5e1a70f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> wxDateTime::GetNumberOfDays </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a>&#160;</td>
          <td class="paramname"><em>cal</em> = <code><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the number of days in the given year. </p>
<p>The only supported value for <em>cal</em> currently is <code>Gregorian</code>. </p>

</div>
</div>
<a class="anchor" id="a1eba7b64affea1f43dda1cb9baf01c96"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> wxDateTime::GetNumberOfDays </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a>&#160;</td>
          <td class="paramname"><em>cal</em> = <code><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the number of days in the given month of the given year. </p>
<p>The only supported value for <em>cal</em> currently is <code>Gregorian</code>. </p>

</div>
</div>
<a class="anchor" id="a5a982f1f5674f694e4ae1df980fb1af6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetPrevWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a798feefecc3c77cc64ba3e585b5ac704" title="Sets the date so that it will be the last weekday before the current date.">SetToPrevWeekDay()</a> was applied. </p>

</div>
</div>
<a class="anchor" id="ab81c9b7069ad4eb91bafdc144a2baea6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double wxDateTime::GetRataDie </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Return the <em>Rata</em> Die number of this date. </p>
<p>By definition, the Rata Die number is a date specified as the number of days relative to a base date of December 31 of the year 0. Thus January 1 of the year 1 is Rata Die day 1. </p>

</div>
</div>
<a class="anchor" id="adf71fea598bd0baeb6b0e1f56eba093b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">unsigned short wxDateTime::GetSecond </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the seconds in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="a6be02e8f615380ff701c5f9cedc9fb84"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">time_t wxDateTime::GetTicks </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the number of seconds since Jan 1, 1970 UTC. </p>
<p>An assert failure will occur if the date is not in the range covered by <code>time_t</code> type, use GetValue() if you work with dates outside of it. </p>

</div>
</div>
<a class="anchor" id="a972ecfc13254561b3620719f673d1053"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static time_t wxDateTime::GetTimeNow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the current time. </p>

</div>
</div>
<a class="anchor" id="a5eb3d08cd32226a5aefa87a65dffe759"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="structwx_date_time_1_1_tm.html">Tm</a> wxDateTime::GetTm </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns broken down representation of the date and time. </p>

</div>
</div>
<a class="anchor" id="a52e8e2420a4ecfaeb0920c20af6f974a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static tm* wxDateTime::GetTmNow </td>
          <td>(</td>
          <td class="paramtype">struct tm *&#160;</td>
          <td class="paramname"><em>tm</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the current time broken down using the buffer whose address is passed to the function with <em>tm</em> to store the result. </p>

</div>
</div>
<a class="anchor" id="afc3dc3d2e1da6990b3bf4f8b552d0367"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static tm* wxDateTime::GetTmNow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the current time broken down. </p>
<p>Note that this function returns a pointer to a static buffer that's reused by calls to this function and certain C library functions (e.g. localtime). If there is any chance your code might be used in a multi-threaded application, you really should use <a class="el" href="classwx_date_time.html#a52e8e2420a4ecfaeb0920c20af6f974a" title="Returns the current time broken down using the buffer whose address is passed to the function with tm...">GetTmNow(struct tm *)</a> instead. </p>

</div>
</div>
<a class="anchor" id="ada293c954c5b0345846bb69de3938da2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a> wxDateTime::GetWeekDay </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the week day in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="a313aab54e44a9de99b6f0d0eef528aa7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</em> = <code>1</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em> = <code><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a4687372ebe55a6aded83de6a639cde95" title="Sets the date to the n-th weekday in the given month of the given year (the current month and year ar...">SetToWeekDay()</a> was applied. </p>

</div>
</div>
<a class="anchor" id="a2b3deaf8d044cb517c2fabc7a0a4e561"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetWeekDayInSameWeek </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a927cf1043514729227f07d244b208142" title="Adjusts the date so that it will still lie in the same week as before, but its week day will be the g...">SetToWeekDayInSameWeek()</a> was applied. </p>

</div>
</div>
<a class="anchor" id="a766fa258f8e30e406489df23de54e29f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_string.html">wxString</a> wxDateTime::GetWeekDayName </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7">NameFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a49326e6533b05df469ac7c5ff2af78b7a55a9b6bb37099a66708970996b4e2e89">Name_Full</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Gets the full (default) or abbreviated name of the given week day. </p>
<p>This function returns the name in the current locale, use <a class="el" href="classwx_date_time.html#ad9543420706df2f207dfcfbd3449b111" title="Return the standard English name of the given week day.">GetEnglishWeekDayName()</a> to get the untranslated name if necessary.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">weekday</td><td>One of <a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457aecc652810e8944beafed362de118d631">wxDateTime::Sun</a>, ..., <a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457a1fb68aa3f50f920bc1b1d835f1e0eb73">wxDateTime::Sat</a> values. </td></tr>
    <tr><td class="paramname">flags</td><td>Either Name_Full (default) or Name_Abbr.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a85afc6bab234a485e7939e7fec941d76" title="Gets the full (default) or abbreviated name of the given month.">GetMonthName()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ac2e541595f16d6f48db34b489a5d1ce9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> wxDateTime::GetWeekOfMonth </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the ordinal number of the week in the month (in 1-5 range). </p>
<p>As <a class="el" href="classwx_date_time.html#aeb92e6f6fdd172850a759fda324c87fb" title="Returns the number of the week of the year this date is in.">GetWeekOfYear()</a>, this function supports both conventions for the week start. </p>

</div>
</div>
<a class="anchor" id="aeb92e6f6fdd172850a759fda324c87fb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a> wxDateTime::GetWeekOfYear </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the number of the week of the year this date is in. </p>
<p>The first week of the year is, according to international standards, the one containing Jan 4 or, equivalently, the first week which has Thursday in this year. Both of these definitions are the same as saying that the first week of the year must contain more than half of its days in this year. Accordingly, the week number will always be in 1-53 range (52 for non-leap years).</p>
<p>The function depends on the week start convention specified by the <em>flags</em> argument but its results for <code>Sunday_First</code> are not well-defined as the ISO definition quoted above applies to the weeks starting on Monday only. </p>

</div>
</div>
<a class="anchor" id="a27fe507f5ba549091f1f7d523e424be9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxDateTime::GetYear </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em> = <code><a class="el" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba44955e1d9b9cb1259580226af61d33d8">Local</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the year in the given timezone (local one by default). </p>

</div>
</div>
<a class="anchor" id="ad96b754422ee7db5adcace39b4f2395e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::GetYearDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>yday</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the copy of this object to which <a class="el" href="classwx_date_time.html#a857b73aa9271782744cd524bea373f3c" title="Sets the date to the day number yday in the same year (i.e. unlike the other functions, this one does not use the current year).">SetToYearDay()</a> was applied. </p>

</div>
</div>
<a class="anchor" id="a8985ab251703e34d0b288a22581ba9d8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsBetween </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>t1</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>t2</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if <a class="el" href="classwx_date_time.html#ad1edfb9a46c2dcd963200beff1648dc2" title="Returns true if this date lies strictly between the two given dates.">IsStrictlyBetween()</a> is <span class="literal">true</span> or if the date is equal to one of the limit values. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#ad1edfb9a46c2dcd963200beff1648dc2" title="Returns true if this date lies strictly between the two given dates.">IsStrictlyBetween()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a5478f06e2449d299c60ad98be6ca34a8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxDateTime::IsDST </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td>
          <td class="paramname"><em>country</em> = <code><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the DST is applied for this date in the given country. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a968bb73469fdccd2903c671b435735d7" title="Get the beginning of DST for the given country in the given year (current one by default).">GetBeginDST()</a>, <a class="el" href="classwx_date_time.html#a8c811978a0390f54ffa6012931ecb1af" title="Returns the end of DST for the given country in the given year (current one by default).">GetEndDST()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a52f2fcf206a4a78b3f3d36891263b4c9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static bool wxDateTime::IsDSTApplicable </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td>
          <td class="paramname"><em>country</em> = <code><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if DST was used in the given year (the current one by default) in the given country. </p>

</div>
</div>
<a class="anchor" id="a73fc9631cab5db9cc602bb5ec6c1f505"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsEarlierThan </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>datetime</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if this date precedes the given one. </p>

</div>
</div>
<a class="anchor" id="a0a00396a0e837d2577547363a50467ac"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsEqualTo </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>datetime</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the two dates are strictly identical. </p>

</div>
</div>
<a class="anchor" id="a984b284c05ac8f37c5ad335cd6ad1c52"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsEqualUpTo </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>dt</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>ts</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the date is equal to another one up to the given time interval, i.e. if the absolute difference between the two dates is less than this interval. </p>

</div>
</div>
<a class="anchor" id="a9e0c48caeb682ef668b4d7940d663937"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsLaterThan </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>datetime</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if this date is later than the given one. </p>

</div>
</div>
<a class="anchor" id="a55f8149cfda08356431d6c36ef9c02dc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static bool wxDateTime::IsLeapYear </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70c">Calendar</a>&#160;</td>
          <td class="paramname"><em>cal</em> = <code><a class="el" href="classwx_date_time.html#ab2c1717e9dff5256cc01f917a5b7f70ca4b609caf0c9d7b04a88a0aa2dbd5dd91">Gregorian</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the <em>year</em> is a leap one in the specified calendar. </p>
<p>This functions supports Gregorian and Julian calendars. </p>

</div>
</div>
<a class="anchor" id="a237d373eb71aff639e44e5ff46ddf2f3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsSameDate </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>dt</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the date is the same without comparing the time parts. </p>

</div>
</div>
<a class="anchor" id="a5627246bfbd060f01f027ae1d53a7f24"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsSameTime </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>dt</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the time is the same (although dates may differ). </p>

</div>
</div>
<a class="anchor" id="ad1edfb9a46c2dcd963200beff1648dc2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsStrictlyBetween </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>t1</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>t2</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if this date lies strictly between the two given dates. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a8985ab251703e34d0b288a22581ba9d8" title="Returns true if IsStrictlyBetween() is true or if the date is equal to one of the limit values...">IsBetween()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="aaff0bd60809b4d03839ddd4c6eb9e84d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsValid </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the object represents a valid time moment. </p>

</div>
</div>
<a class="anchor" id="a93292d73b18e4858735c13e754224dcb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static bool wxDateTime::IsWestEuropeanCountry </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td>
          <td class="paramname"><em>country</em> = <code><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a></code></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This function returns <span class="literal">true</span> if the specified (or default) country is one of Western European ones. </p>
<p>It is used internally by <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> to determine the DST convention and date and time formatting rules. </p>

</div>
</div>
<a class="anchor" id="a24f030fd10755b6a0e30fb7cdc9933bc"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::IsWorkDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td>
          <td class="paramname"><em>country</em> = <code><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126a69d895ddc37befe32a13d5497c9f8e73">Country_Default</a></code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> is this day is not a holiday in the given country. </p>

</div>
</div>
<a class="anchor" id="a83cff1eb8079f9eef5c386a5701d8803"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::MakeFromTimezone </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>noDST</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a947daf50d898d95d063777c2cef27feb" title="Transform the date from the given time zone to the local one.">FromTimezone()</a> but modifies the object in place. </p>

</div>
</div>
<a class="anchor" id="ad6ce9eb1fb237eda8013695ebd531af1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::MakeTimezone </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>noDST</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Modifies the object in place to represent the date in another time zone. </p>
<p>If <em>noDST</em> is <span class="literal">true</span>, no DST adjustments will be made. </p>

</div>
</div>
<a class="anchor" id="aa7e62cebf49c1c6b765e70ec19caedc0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::MakeUTC </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>noDST</em> = <code>false</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This is the same as calling <a class="el" href="classwx_date_time.html#ad6ce9eb1fb237eda8013695ebd531af1" title="Modifies the object in place to represent the date in another time zone.">MakeTimezone()</a> with the argument <code>GMT0</code>. </p>

</div>
</div>
<a class="anchor" id="a6e6c37a0414bb4831e2cc03b37f498a2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::Now </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the object corresponding to the current time. </p>
<p>Example:</p>
<div class="fragment"><div class="line"><a class="code" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> now = <a class="code" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2" title="Returns the object corresponding to the current time.">wxDateTime::Now</a>();</div>
<div class="line">printf(<span class="stringliteral">&quot;Current time in Paris:\t%s\n&quot;</span>, now.<a class="code" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format</a>(<span class="stringliteral">&quot;%c&quot;</span>, <a class="code" href="classwx_date_time.html#a4db12283a6c06cea4c92528fbb7f88bba768e71f1f3c63c6cf64dd9c9a0f20b0b" title="Central Europe Time.">wxDateTime::CET</a>).<a class="code" href="classwx_string.html#a6418ec90c6d4ffe0b05702be1b35df4f" title="Returns a lightweight intermediate class which is in turn implicitly convertible to both const char* ...">c_str</a>());</div>
</div><!-- fragment --><dl class="section note"><dt>Note</dt><dd>This function is accurate up to seconds. <a class="el" href="classwx_date_time.html#a0db1c9bac7b2d27d589cad2a38d1438c" title="Returns the object corresponding to the current UTC time including the milliseconds.">UNow()</a> can be used if better precision is required.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#af730202238b9acd5a5df2977fa40c569" title="Returns the object corresponding to the midnight of the current day (i.e. the same as Now()...">Today()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a0af3cec098ac6e2a8a18c2759024307a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::operator+ </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>ds</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given date span to this object. </p>

</div>
</div>
<a class="anchor" id="abba6556909650764a6749eb84b57505d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::operator+ </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>ts</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given time span to this object. </p>

</div>
</div>
<a class="anchor" id="ac1a77fc607ee36a16fba7078d25fe44d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::operator+= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given date span to this object. </p>

</div>
</div>
<a class="anchor" id="ae3f78fde5174f576fca00eb21654544f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::operator+= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds the given time span to this object. </p>

</div>
</div>
<a class="anchor" id="a2bb838f74ca477a14ff15296272fdb20"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::operator- </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>ds</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given date span from this object. </p>

</div>
</div>
<a class="anchor" id="a823c5616c614eca8c9b666c5e1739fa1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::operator- </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>ts</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given time span from this object. </p>

</div>
</div>
<a class="anchor" id="a1acfe9f39dae54e792958ee602604a9f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_time_span.html">wxTimeSpan</a> wxDateTime::operator- </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>dt2</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts another date from this one and returns the difference between them as a <a class="el" href="classwx_time_span.html" title="wxTimeSpan class represents a time interval.">wxTimeSpan</a>. </p>

</div>
</div>
<a class="anchor" id="a146dd110466fb8ba714e98a853b83019"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::operator-= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given date span from this object. </p>

</div>
</div>
<a class="anchor" id="a45d8ef84a5fcda547a9a15226ee68347"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::operator-= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given time span from this object. </p>

</div>
</div>
<a class="anchor" id="a437af2acfdf63d47f09e43269e4c3f76"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::operator= </td>
          <td>(</td>
          <td class="paramtype">time_t&#160;</td>
          <td class="paramname"><em>timet</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>. </p>

</div>
</div>
<a class="anchor" id="a4040ef007d8fc9273b0e6bf489d4d975"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::operator= </td>
          <td>(</td>
          <td class="paramtype">const struct tm &amp;&#160;</td>
          <td class="paramname"><em>tm</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a>. </p>

</div>
</div>
<a class="anchor" id="acdcb88e25b38099994af45b11391c962"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseDate </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">wxString::const_iterator *&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function is like <a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485" title="Parses the string datetime containing the date and time in free format.">ParseDateTime()</a>, but it only allows the date to be specified. </p>
<p>It is thus less flexible then <a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485" title="Parses the string datetime containing the date and time in free format.">ParseDateTime()</a>, but also has less chances to misinterpret the user input.</p>
<p>See <a class="el" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b" title="This function parses the string date according to the given format.">ParseFormat()</a> for the description of function parameters and return value.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a332a41f998bc3be6c0a9a81449112485"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseDateTime </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>datetime</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">wxString::const_iterator *&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Parses the string <em>datetime</em> containing the date and time in free format. </p>
<p>This function tries as hard as it can to interpret the given string as date and time. Unlike <a class="el" href="classwx_date_time.html#ab0f2485c52d0d3cf0196aaf0062d2f83" title="Parses the string date looking for a date formatted according to the RFC 822 in it.">ParseRfc822Date()</a>, it will accept anything that may be accepted and will only reject strings which cannot be parsed in any way at all. Notice that the function will fail if either date or time part is present but not both, use <a class="el" href="classwx_date_time.html#acdcb88e25b38099994af45b11391c962" title="This function is like ParseDateTime(), but it only allows the date to be specified.">ParseDate()</a> or <a class="el" href="classwx_date_time.html#ac903b3227620e1b88019e76b807327e8" title="This functions is like ParseDateTime(), but only allows the time to be specified in the input string...">ParseTime()</a> to parse strings containing just the date or time component.</p>
<p>See <a class="el" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b" title="This function parses the string date according to the given format.">ParseFormat()</a> for the description of function parameters and return value. </p>

</div>
</div>
<a class="anchor" id="a5d01d56c310d505a093f1a7f25086a1b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseFormat </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>format</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>dateDef</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">wxString::const_iterator *&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function parses the string <em>date</em> according to the given <em>format</em>. </p>
<p>The system <code>strptime(3)</code> function is used whenever available, but even if it is not, this function is still implemented, although support for locale-dependent format specifiers such as <code>"%c"</code>, <code>"%x"</code> or <code>"%X"</code> may not be perfect and GNU extensions such as <code>"%z"</code> and <code>"%Z"</code> are not implemented. This function does handle the month and weekday names in the current locale on all platforms, however.</p>
<p>Please see the description of the ANSI C function <code>strftime(3)</code> for the syntax of the format string.</p>
<p>The <em>dateDef</em> parameter is used to fill in the fields which could not be determined from the format string. For example, if the format is <code>"%d"</code> (the day of the month), the month and the year are taken from <em>dateDef</em>. If it is not specified, <a class="el" href="classwx_date_time.html#af730202238b9acd5a5df2977fa40c569" title="Returns the object corresponding to the midnight of the current day (i.e. the same as Now()...">Today()</a> is used as the default date.</p>
<p>Example of using this function: </p>
<div class="fragment"><div class="line"><a class="code" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> dt;</div>
<div class="line"><a class="code" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> str = <span class="stringliteral">&quot;...&quot;</span>;</div>
<div class="line">wxString::const_iterator end;</div>
<div class="line"><span class="keywordflow">if</span> ( !dt.<a class="code" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b" title="This function parses the string date according to the given format.">ParseFormat</a>(str, <span class="stringliteral">&quot;%Y-%m-%d&quot;</span>, &amp;end) )</div>
<div class="line">    ... parsing failed ...</div>
<div class="line"><span class="keywordflow">else</span> <span class="keywordflow">if</span> ( end == str.<a class="code" href="classwx_string.html#a6a0f235fff88df5e6b16b5f0e1e719cc">end</a>() )</div>
<div class="line">    ... entire <span class="keywordtype">string</span> parsed ...</div>
<div class="line"><span class="keywordflow">else</span></div>
<div class="line">    ... <a class="code" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>(end, str.<a class="code" href="classwx_string.html#a6a0f235fff88df5e6b16b5f0e1e719cc">end</a>()) left over ...</div>
</div><!-- fragment --><dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">date</td><td>The string to be parsed. </td></tr>
    <tr><td class="paramname">format</td><td>strptime()-like format string. </td></tr>
    <tr><td class="paramname">dateDef</td><td>Used to fill in the date components not specified in the <em>date</em> string. </td></tr>
    <tr><td class="paramname">end</td><td>Will be filled with the iterator pointing to the location where the parsing stopped if the function returns <span class="literal">true</span>. If the entire string was consumed, it is set to <code>date.end()</code>. Notice that this argument must be non-<span class="literal">NULL</span>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if at least part of the string was parsed successfully, <span class="literal">false</span> otherwise.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a32377f43a31e29ad4fe70f299650c5f8" title="This function does the same as the standard ANSI C strftime(3) function (http://www.cplusplus.com/reference/clibrary/ctime/strftime.html).">Format()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="aa2137ab606576e3f5baf50d98ff47d17"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseFormat </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>format</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">wxString::const_iterator *&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </p>

</div>
</div>
<a class="anchor" id="a9430da2d38573e4043cf1217c0da1916"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseFormat </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">wxString::const_iterator *&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </p>

</div>
</div>
<a class="anchor" id="a35240c6a928bc9c763a5d26bd8f3072b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseISOCombined </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">char&#160;</td>
          <td class="paramname"><em>sep</em> = <code>'T'</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function parses the string containing the date and time in ISO 8601 combined format <code>"YYYY-MM-DDTHH:MM:SS"</code>. </p>
<p>The separator between the date and time parts must be equal to <em>sep</em> for the function to succeed.</p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the entire string was parsed successfully, <span class="literal">false</span> otherwise. </dd></dl>

</div>
</div>
<a class="anchor" id="a416e9e5e7395dd11a059cd116da7e6a2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseISODate </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function parses the date in ISO 8601 format <code>"YYYY-MM-DD"</code>. </p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the entire string was parsed successfully, <span class="literal">false</span> otherwise. </dd></dl>

</div>
</div>
<a class="anchor" id="adc4c1fb178f73958b151eabd36625f59"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseISOTime </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function parses the time in ISO 8601 format <code>"HH:MM:SS"</code>. </p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the entire string was parsed successfully, <span class="literal">false</span> otherwise. </dd></dl>

</div>
</div>
<a class="anchor" id="ab0f2485c52d0d3cf0196aaf0062d2f83"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseRfc822Date </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>date</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">wxString::const_iterator *&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Parses the string <em>date</em> looking for a date formatted according to the RFC 822 in it. </p>
<p>The exact description of this format may, of course, be found in the RFC (section 5), but, briefly, this is the format used in the headers of Internet email messages and one of the most common strings expressing date in this format may be something like <code>"Sat, 18 Dec 1999 00:48:30 +0100"</code>.</p>
<p>Returns <span class="literal">NULL</span> if the conversion failed, otherwise return the pointer to the character immediately following the part of the string which could be parsed. If the entire string contains only the date in RFC 822 format, the returned pointer will be pointing to a <code>NUL</code> character.</p>
<p>This function is intentionally strict, it will return an error for any string which is not RFC 822 compliant. If you need to parse date formatted in more free ways, you should use <a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485" title="Parses the string datetime containing the date and time in free format.">ParseDateTime()</a> or <a class="el" href="classwx_date_time.html#acdcb88e25b38099994af45b11391c962" title="This function is like ParseDateTime(), but it only allows the date to be specified.">ParseDate()</a> instead.</p>
<p>See <a class="el" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b" title="This function parses the string date according to the given format.">ParseFormat()</a> for the description of function parameters and return value. </p>

</div>
</div>
<a class="anchor" id="ac903b3227620e1b88019e76b807327e8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::ParseTime </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>time</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">wxString::const_iterator *&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This functions is like <a class="el" href="classwx_date_time.html#a332a41f998bc3be6c0a9a81449112485" title="Parses the string datetime containing the date and time in free format.">ParseDateTime()</a>, but only allows the time to be specified in the input string. </p>
<p>See <a class="el" href="classwx_date_time.html#a5d01d56c310d505a093f1a7f25086a1b" title="This function parses the string date according to the given format.">ParseFormat()</a> for the description of function parameters and return value. </p>

</div>
</div>
<a class="anchor" id="a1975ca9c72d4fb89050566849776d3b2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::ResetTime </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Reset time to midnight (00:00:00) without changing the date. </p>

</div>
</div>
<a class="anchor" id="a221052d954c072ce56b796eaa4c075d3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Set </td>
          <td>(</td>
          <td class="paramtype">time_t&#160;</td>
          <td class="paramname"><em>timet</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Constructs the object from <em>timet</em> value holding the number of seconds since Jan 1, 1970 UTC. </p>
<p>If <em>timet</em> is invalid, i.e. </p>
<div class="fragment"><div class="line">(time_t)-1 </div>
</div><!-- fragment --><p>, <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> becomes invalid too, i.e. its <a class="el" href="classwx_date_time.html#aaff0bd60809b4d03839ddd4c6eb9e84d" title="Returns true if the object represents a valid time moment.">IsValid()</a> will return <span class="literal">false</span>. </p>

</div>
</div>
<a class="anchor" id="ae38d80eca7dcbfcd0984708e957c343f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Set </td>
          <td>(</td>
          <td class="paramtype">const struct tm &amp;&#160;</td>
          <td class="paramname"><em>tm</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date and time from the broken down representation in the standard <em>tm</em> structure. </p>

</div>
</div>
<a class="anchor" id="afe75b8090e51a7b4e1aacccc55fd10bc"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Set </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="structwx_date_time_1_1_tm.html">Tm</a> &amp;&#160;</td>
          <td class="paramname"><em>tm</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date and time from the broken down representation in the <em><a class="el" href="structwx_date_time_1_1_tm.html" title="Contains broken down date-time representation.">wxDateTime::Tm</a></em> structure. </p>

</div>
</div>
<a class="anchor" id="acfaba2a9f0241f74aff4641304f0a8fb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Set </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>jdn</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date from the so-called Julian Day Number. </p>
<p>By definition, the Julian Day Number, usually abbreviated as JDN, of a particular instant is the fractional number of days since 12 hours Universal Coordinated Time (Greenwich mean noon) on January 1 of the year -4712 in the Julian proleptic calendar. </p>

</div>
</div>
<a class="anchor" id="a0b73caf2a363e429725244483ebc0d08"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Set </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>hour</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>minute</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>second</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>millisec</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date to be equal to <a class="el" href="classwx_date_time.html#af730202238b9acd5a5df2977fa40c569" title="Returns the object corresponding to the midnight of the current day (i.e. the same as Now()...">Today()</a> and the time from supplied parameters. </p>
<p>See the full <a class="el" href="classwx_date_time.html#a221052d954c072ce56b796eaa4c075d3" title="Constructs the object from timet value holding the number of seconds since Jan 1, 1970 UTC...">Set()</a> overload for the remarks about DST. </p>

</div>
</div>
<a class="anchor" id="a6f7ee89e55144c61ac19a6543e67db6a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Set </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>day</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>hour</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>minute</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>second</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>millisec</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date and time from the parameters. </p>
<p>If the function parameters are invalid, e.g. <em>month</em> is February and <em>day</em> is 30, the object is left in an invalid state, i.e. <a class="el" href="classwx_date_time.html#aaff0bd60809b4d03839ddd4c6eb9e84d" title="Returns true if the object represents a valid time moment.">IsValid()</a> method will return <span class="literal">false</span>.</p>
<p>If the specified time moment is invalid due to DST, i.e. it falls into the "missing" hour on the date on which the DST starts, a valid <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> object is still constructed but its hour component is moved forward to ensure that it corresponds to a valid moment in the local time zone. For example, in the CET time zone the DST started on 2013-03-31T02:00:00 in 2013 and so setting the object to 2:30 at this date actually sets the hour to 3, and not 2. </p>

</div>
</div>
<a class="anchor" id="a5ad5b532c62dd26784bb51366a27ca8d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static void wxDateTime::SetCountry </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#abdd3b3e656f92a4923c3ddf2026ed126">Country</a>&#160;</td>
          <td class="paramname"><em>country</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Sets the country to use by default. </p>
<p>This setting influences the DST calculations, date formatting and other things.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a92fb00b090bd665f4ba13d70738ecd4a" title="Returns the current default country.">GetCountry()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a153d3687333e318574299ad191f340bb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetDay </td>
          <td>(</td>
          <td class="paramtype">unsigned short&#160;</td>
          <td class="paramname"><em>day</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the day without changing other date components. </p>

</div>
</div>
<a class="anchor" id="acdba3b71eec0870b14417d3010311a1a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetFromDOS </td>
          <td>(</td>
          <td class="paramtype">unsigned long&#160;</td>
          <td class="paramname"><em>ddt</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date from the date and time in DOS format. </p>

</div>
</div>
<a class="anchor" id="a48d529a2bb8434ce9419dbaa87a7e06d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetFromMSWSysTime </td>
          <td>(</td>
          <td class="paramtype">const struct _SYSTEMTIME &amp;&#160;</td>
          <td class="paramname"><em>st</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Initialize using the Windows SYSTEMTIME structure. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">st</td><td>Input, Windows SYSTEMTIME reference </td></tr>
  </table>
  </dd>
</dl>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>
<dl class="section remark"><dt>Remarks</dt><dd>MSW only <div><span class="avail">Availability:</span>&#160;&#160;only available for the <a class="el" href="page_port.html#page_port_wxmsw">wxMSW</a> port.</div>  </dd></dl>

</div>
</div>
<a class="anchor" id="a00a6e0dd915c7239dc0ea6192a1908c1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetHour </td>
          <td>(</td>
          <td class="paramtype">unsigned short&#160;</td>
          <td class="paramname"><em>hour</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the hour without changing other date components. </p>

</div>
</div>
<a class="anchor" id="ab227fbf523dca7ea1aefdc0a806d4622"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetMillisecond </td>
          <td>(</td>
          <td class="paramtype">unsigned short&#160;</td>
          <td class="paramname"><em>millisecond</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the millisecond without changing other date components. </p>

</div>
</div>
<a class="anchor" id="ae028d28c81960d95b9d433ea02775cde"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetMinute </td>
          <td>(</td>
          <td class="paramtype">unsigned short&#160;</td>
          <td class="paramname"><em>minute</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the minute without changing other date components. </p>

</div>
</div>
<a class="anchor" id="a480fc77f9dc8491eb71b75be65befc57"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetMonth </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the month without changing other date components. </p>

</div>
</div>
<a class="anchor" id="aff2fd9f698a48bd18946b3d950adda65"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetSecond </td>
          <td>(</td>
          <td class="paramtype">unsigned short&#160;</td>
          <td class="paramname"><em>second</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the second without changing other date components. </p>

</div>
</div>
<a class="anchor" id="ab033c8036318532cb55943847a9abb66"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetToCurrent </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date and time of to the current values. </p>
<p>Same as assigning the result of <a class="el" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2" title="Returns the object corresponding to the current time.">Now()</a> to this object. </p>

</div>
</div>
<a class="anchor" id="a6d6bc203c75e55188c03d60d88600494"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetToLastMonthDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em> = <code><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date to the last day in the specified month (the current one by default). </p>
<dl class="section return"><dt>Returns</dt><dd>The reference to the modified object itself. </dd></dl>

</div>
</div>
<a class="anchor" id="a55182141a6235de19c0bae356994e6f0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::SetToLastWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em> = <code><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The effect of calling this function is the same as of calling <code>SetToWeekDay</code>(-1, weekday, month, year). </p>
<p>The date will be set to the last <em>weekday</em> in the given month and year (the current ones by default). Always returns <span class="literal">true</span>. </p>

</div>
</div>
<a class="anchor" id="ab239f44b4d46001c5887f8a3680fa5c0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetToNextWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date so that it will be the first <em>weekday</em> following the current date. </p>
<dl class="section return"><dt>Returns</dt><dd>The reference to the modified object itself. </dd></dl>

</div>
</div>
<a class="anchor" id="a798feefecc3c77cc64ba3e585b5ac704"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetToPrevWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date so that it will be the last <em>weekday</em> before the current date. </p>
<dl class="section return"><dt>Returns</dt><dd>The reference to the modified object itself. </dd></dl>

</div>
</div>
<a class="anchor" id="a4687372ebe55a6aded83de6a639cde95"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxDateTime::SetToWeekDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</em> = <code>1</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117">Month</a>&#160;</td>
          <td class="paramname"><em>month</em> = <code><a class="el" href="classwx_date_time.html#a156e17eb15e3c16a7da36cd810ff9117ad2d17a16763803c0aa4977feb7725831">Inv_Month</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em> = <code><a class="el" href="classwx_date_time.html#a4f9ba1f993835bc0096f8811f92f5d79a4d483b3a43f07dd5b19d866036c20071">Inv_Year</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date to the <em>n-th</em> <em>weekday</em> in the given month of the given year (the current month and year are used by default). </p>
<p>The parameter <em>n</em> may be either positive (counting from the beginning of the month) or negative (counting from the end of it).</p>
<p>For example, SetToWeekDay(2, wxDateTime::Wed) will set the date to the second Wednesday in the current month and SetToWeekDay(-1, <a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457aecc652810e8944beafed362de118d631">wxDateTime::Sun</a>) will set the date to the last Sunday in the current month.</p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the date was modified successfully, <span class="literal">false</span> otherwise meaning that the specified date doesn't exist. </dd></dl>

</div>
</div>
<a class="anchor" id="a927cf1043514729227f07d244b208142"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetToWeekDayInSameWeek </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4">WeekFlags</a>&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="classwx_date_time.html#a8ab175ce5385f833894d9b89987a90d4a9916ad335e139f471d635cd04a7468d9">Monday_First</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adjusts the date so that it will still lie in the same week as before, but its week day will be the given one. </p>
<dl class="section return"><dt>Returns</dt><dd>The reference to the modified object itself. </dd></dl>

</div>
</div>
<a class="anchor" id="ab91c82e85621326436f2931660434719"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::SetToWeekOfYear </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>numWeek</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457">WeekDay</a>&#160;</td>
          <td class="paramname"><em>weekday</em> = <code><a class="el" href="classwx_date_time.html#a9ce844e5c79b28711f52ae2d9a571457ac165afc62596e609922e423ba262fe56">Mon</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Set the date to the given <em>weekday</em> in the week number <em>numWeek</em> of the given <em>year</em> . </p>
<p>The number should be in range 1-53.</p>
<p>Note that the returned date may be in a different year than the one passed to this function because both the week 1 and week 52 or 53 (for leap years) contain days from different years. See <a class="el" href="classwx_date_time.html#aeb92e6f6fdd172850a759fda324c87fb" title="Returns the number of the week of the year this date is in.">GetWeekOfYear()</a> for the explanation of how the year weeks are counted. </p>

</div>
</div>
<a class="anchor" id="a857b73aa9271782744cd524bea373f3c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetToYearDay </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_date_time.html#a27df9e32a320a1ca266288d1a436de98">wxDateTime_t</a>&#160;</td>
          <td class="paramname"><em>yday</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the date to the day number <em>yday</em> in the same year (i.e. unlike the other functions, this one does not use the current year). </p>
<p>The day number should be in the range 1-366 for the leap years and 1-365 for the other ones.</p>
<dl class="section return"><dt>Returns</dt><dd>The reference to the modified object itself. </dd></dl>

</div>
</div>
<a class="anchor" id="ac68d4faee34360eac3ba52c5def5ac09"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::SetYear </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>year</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the year without changing other date components. </p>

</div>
</div>
<a class="anchor" id="a99bfe3957c206d71cd4d980b10b400a1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::Subtract </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given time span from this object. </p>

</div>
</div>
<a class="anchor" id="a9bb9c12d2fa47e67b6f9975f5cb8d750"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Subtract </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_time_span.html">wxTimeSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given time span from this object. </p>

</div>
</div>
<a class="anchor" id="afb1be3e9505496ec939897ec892fe694"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::Subtract </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given date span from this object. </p>

</div>
</div>
<a class="anchor" id="ad2975130454759c7b198e14de10d2655"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a>&amp; wxDateTime::Subtract </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_span.html">wxDateSpan</a> &amp;&#160;</td>
          <td class="paramname"><em>diff</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts the given date span from this object. </p>

</div>
</div>
<a class="anchor" id="a0c983954508addf59aa40c75eac4beea"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_time_span.html">wxTimeSpan</a> wxDateTime::Subtract </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time.html">wxDateTime</a> &amp;&#160;</td>
          <td class="paramname"><em>dt</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Subtracts another date from this one and returns the difference between them as a <a class="el" href="classwx_time_span.html" title="wxTimeSpan class represents a time interval.">wxTimeSpan</a>. </p>

</div>
</div>
<a class="anchor" id="af730202238b9acd5a5df2977fa40c569"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::Today </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the object corresponding to the midnight of the current day (i.e. the same as <a class="el" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2" title="Returns the object corresponding to the current time.">Now()</a>, but the time part is set to 0). </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2" title="Returns the object corresponding to the current time.">Now()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a254dff0f6fb8861216941dcc3d4fdc15"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::ToTimezone </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_date_time_1_1_time_zone.html">TimeZone</a> &amp;&#160;</td>
          <td class="paramname"><em>tz</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>noDST</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Transform the date to the given time zone. </p>
<p>If <em>noDST</em> is <span class="literal">true</span>, no DST adjustments will be made.</p>
<dl class="section return"><dt>Returns</dt><dd>The date in the new time zone. </dd></dl>

</div>
</div>
<a class="anchor" id="a4bddd303b09cc47c7251b01ca49dc04c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::ToUTC </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>noDST</em> = <code>false</code></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This is the same as calling <a class="el" href="classwx_date_time.html#a254dff0f6fb8861216941dcc3d4fdc15" title="Transform the date to the given time zone.">ToTimezone()</a> with the argument <code>GMT0</code>. </p>

</div>
</div>
<a class="anchor" id="a0db1c9bac7b2d27d589cad2a38d1438c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="classwx_date_time.html">wxDateTime</a> wxDateTime::UNow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the object corresponding to the current UTC time including the milliseconds. </p>
<p>Notice that unlike <a class="el" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2" title="Returns the object corresponding to the current time.">Now()</a>, this method creates a <a class="el" href="classwx_date_time.html" title="wxDateTime class represents an absolute moment in time.">wxDateTime</a> object corresponding to UTC, not local, time.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_date_time.html#a6e6c37a0414bb4831e2cc03b37f498a2" title="Returns the object corresponding to the current time.">Now()</a>, <a class="el" href="group__group__funcmacro__time.html#ga9e6cb143b3e04cf0459aa3f9763eec82" title="Returns the number of milliseconds since GMT 00:00:00 Jan 1st 1970.">wxGetUTCTimeMillis()</a> </dd></dl>

</div>
</div>
</div><!-- contents -->

<address class="footer">
	<small>
		Generated on Thu Nov 27 2014 13:46:46 for wxWidgets by <a href="http://www.doxygen.org/index.html" target="_new">Doxygen</a> 1.8.2
	</small>
</address>
<script src="wxwidgets.js" type="text/javascript"></script>
</div><!-- #page_container -->
</body>
</html>