]> git.tdb.fi Git - libs/core.git/blob - source/time/units.h
Make to_unixtime const
[libs/core.git] / source / time / units.h
1 /* $Id$
2
3 This file is part of libmspcore     
4 Copyright © 2006  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_TIME_UNITS_H_
9 #define MSP_TIME_UNITS_H_
10
11 #include "timedelta.h"
12
13 namespace Msp {
14 namespace Time {
15
16 extern const TimeDelta zero;
17 extern const TimeDelta usec;
18 extern const TimeDelta msec;
19 extern const TimeDelta sec;
20 extern const TimeDelta min;
21 extern const TimeDelta hour;
22 extern const TimeDelta day;
23 extern const TimeDelta week;
24
25 } // namespace Time
26 } // namespace Msp
27
28 #endif