X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftimezone.h;h=83b4b5835fe4298dc047b35040d9066762066139;hb=refs%2Fheads%2Fwip;hp=1a71dd852e760590a4d1424bf011a880aa91e1df;hpb=5889d53f8f073ff0e1e1ebbd786abecd8352a7b3;p=libs%2Fcore.git diff --git a/source/time/timezone.h b/source/time/timezone.h index 1a71dd8..83b4b58 100644 --- a/source/time/timezone.h +++ b/source/time/timezone.h @@ -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 #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