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