]> 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 1a71dd852e760590a4d1424bf011a880aa91e1df..83b4b5835fe4298dc047b35040d9066762066139 100644 (file)
@@ -1,19 +1,13 @@
-/* $Id$
-
-This file is part of libmspcore
-Copyright © 2008-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #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;
@@ -29,6 +23,8 @@ public:
 
        static const TimeZone &utc();
        static const TimeZone &local();
+private:
+       static TimeZone platform_get_local_timezone();
 };
 
 } // namespace Time