1 #ifndef MSP_TIME_TIMEZONE_H_
2 #define MSP_TIME_TIMEZONE_H_
4 #include <msp/core/mspcore_api.h>
10 class MSPCORE_API TimeZone
19 TimeZone(int, const std::string &);
21 const std::string &get_name() const { return name; }
22 const TimeDelta &get_offset() const { return offset; }
24 static const TimeZone &utc();
25 static const TimeZone &local();
27 static TimeZone platform_get_local_timezone();