AceTime  1.0
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.
ZoneContext.h
1 /*
2  * MIT License
3  * Copyright (c) 2019 Brian T. Park
4  */
5 
6 #ifndef ACE_TIME_COMMON_ZONE_CONTEXT_H
7 #define ACE_TIME_COMMON_ZONE_CONTEXT_H
8 
9 namespace ace_time {
10 
11 // Data structure for BasicZoneProcessor
12 namespace basic {
13 #include "ZoneContext.inc"
14 }
15 
16 // Data structure for ExtendedZoneProcessor
17 namespace extended {
18 #include "ZoneContext.inc"
19 }
20 
21 }
22 
23 #endif