]> git.tdb.fi Git - libs/core.git/blob - source/time/units.h
Throw out anything polling related - they will go to libmspio eventually
[libs/core.git] / source / time / units.h
1 /*
2 This file is part of libmspcore     
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 zero;
15 extern const TimeDelta usec;
16 extern const TimeDelta msec;
17 extern const TimeDelta sec;
18 extern const TimeDelta min;
19 extern const TimeDelta hour;
20 extern const TimeDelta day;
21 extern const TimeDelta week;
22
23 } // namespace Time
24 } // namespace Msp
25
26 #endif