5 // Created by James McIlree on 4/14/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
9 #ifndef CPPUtil_UtilTime_hpp
10 #define CPPUtil_UtilTime_hpp
12 static const uint64_t NANOSECONDS_PER_MICROSECOND = 1000ULL;
13 static const uint64_t NANOSECONDS_PER_MILLISECOND = 1000000ULL;
14 static const uint64_t NANOSECONDS_PER_SECOND = 1000000000ULL;
16 static const uint64_t MICROSECONDS_PER_MILLISECOND = 1000ULL;
17 static const uint64_t MICROSECONDS_PER_SECOND = 1000000ULL;
19 static const uint64_t MILLISECONDS_PER_SECOND = 1000ULL;