9 #include "ExtendedZone.h"
11 using ace_common::KString;
12 using ace_time::internal::findShortName;
17 #if ACE_TIME_USE_PROGMEM
20 const __FlashStringHelper* name = mZoneInfoBroker.name();
21 const ZoneContext* zoneContext = mZoneInfoBroker.zoneContext();
23 kname.printTo(printer);
27 const __FlashStringHelper* name = mZoneInfoBroker.name();
28 const __FlashStringHelper* shortName = findShortName(name);
29 printer.print(shortName);
35 const char* name = mZoneInfoBroker.name();
36 const ZoneContext* zoneContext = mZoneInfoBroker.zoneContext();
38 kname.printTo(printer);
42 const char* name = mZoneInfoBroker.name();
43 const char* shortName = findShortName(name);
44 printer.print(shortName);
47 #endif // ACE_TIME_USE_PROGMEM