2 This file is part of libmspcore
3 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
4 Distributed under the LGPL
11 // Constants to be used in creation of TimeDeltas
12 const TimeDelta zero(0);
13 const TimeDelta usec(1);
14 const TimeDelta msec(1000);
15 const TimeDelta sec(1000000);
16 const TimeDelta min(60*1000000);
17 const TimeDelta hour(3600*1000000LL);
18 const TimeDelta day(86400*1000000LL);
19 const TimeDelta week(7*86400*1000000LL);