AceTime  0.3
Date and time classes for Arduino that support timezones from the TZ Database, and a system clock that can synchronize from an NTP server or an RTC chip.
ZoneInfo.h
1 #ifndef ACE_TIME_ZONE_INFO_H
2 #define ACE_TIME_ZONE_INFO_H
3 
4 #include <stdint.h>
5 #include "ZoneContext.h"
6 #include "ZonePolicy.h"
7 
8 namespace ace_time {
9 
10 // Data structures for BasicZoneSpecifier
11 namespace basic {
12 #include "ZoneInfo.inc"
13 }
14 
15 // Data structures for ExtendedZoneSpecifier
16 namespace extended {
17 #include "ZoneInfo.inc"
18 }
19 
20 }
21 
22 #endif