AceTime  0.1
Date and time classes for Arduino that supports the TZ DAtabase, and a system clock synchronized from an NTP server or an RTC chip.
ZoneContext.h
1 #ifndef ACE_TIME_COMMON_ZONE_CONTEXT_H
2 #define ACE_TIME_COMMON_ZONE_CONTEXT_H
3 
4 namespace ace_time {
5 namespace common {
6 
11 struct ZoneContext {
13  int16_t startYear;
14 
16  int16_t untilYear;
17 
19  //uint16_t epoch_year;
20 };
21 
22 }
23 }
24 
25 #endif
int16_t untilYear
Until year of the zone files.
Definition: ZoneContext.h:16
int16_t startYear
Start year of the zone files.
Definition: ZoneContext.h:13
Metadata about the zone database.
Definition: ZoneContext.h:11