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.
ZonePolicy.h
1 #ifndef ACE_TIME_ZONE_POLICY_H
2 #define ACE_TIME_ZONE_POLICY_H
3 
4 #include <stdint.h>
5 
6 namespace ace_time {
7 
8 // Data structures for BasicZoneSpecifier
9 namespace basic {
10 #include "ZonePolicy.inc"
11 }
12 
13 // Data structures for ExtendedZoneSpecifier
14 namespace extended {
15 #include "ZonePolicy.inc"
16 }
17 
18 }
19 
20 #endif