]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/timezone.h
Add move semantics to Variant
[libs/core.git] / source / time / timezone.h
index 28feb16bf13ff958af044f4e2e0da1319688622c..83b4b5835fe4298dc047b35040d9066762066139 100644 (file)
@@ -1,12 +1,13 @@
 #ifndef MSP_TIME_TIMEZONE_H_
 #define MSP_TIME_TIMEZONE_H_
 
+#include <msp/core/mspcore_api.h>
 #include "timedelta.h"
 
 namespace Msp {
 namespace Time {
 
-class TimeZone
+class MSPCORE_API TimeZone
 {
 private:
        std::string name;
@@ -22,6 +23,8 @@ public:
 
        static const TimeZone &utc();
        static const TimeZone &local();
+private:
+       static TimeZone platform_get_local_timezone();
 };
 
 } // namespace Time