]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/rawtime.h
Isolate platform-dependent RawTime conversion functions to a private header
[libs/core.git] / source / time / rawtime.h
index 4831645adb60f8d0ea401b5bc4486dbb10ad6d1b..76524509990986fd55b0eaa78a9cd366bee95c00 100644 (file)
@@ -1,10 +1,6 @@
 #ifndef MSP_TIME_RAWTIME_H_
 #define MSP_TIME_RAWTIME_H_
 
-#ifndef WIN32
-#include <sys/time.h>
-#endif
-
 namespace Msp {
 namespace Time {
 
@@ -14,12 +10,6 @@ typedef __int64 RawTime;
 typedef long long RawTime;
 #endif
 
-#ifndef WIN32
-// Internal conversion utilities, not intended for public use
-timeval rawtime_to_timeval(RawTime);
-timespec rawtime_to_timespec(RawTime);
-#endif
-
 } // namespace Time
 } // namespace Msp