6 // Constants to be used in creation of TimeDeltas
7 const TimeDelta zero(0);
8 const TimeDelta usec(1);
9 const TimeDelta msec(1000);
10 const TimeDelta sec(1000000);
11 const TimeDelta min(60*1000000);
12 const TimeDelta hour(3600*1000000LL);
13 const TimeDelta day(86400*1000000LL);
14 const TimeDelta week(7*86400*1000000LL);