]> git.tdb.fi Git - libs/core.git/blob - source/time/rawtime_private.h
566d5a61589e7fa85c6f12b090f2ab8eb78608fc
[libs/core.git] / source / time / rawtime_private.h
1 #ifndef MSP_TIME_RAWTIME_PRIVATE_H_
2 #define MSP_TIME_RAWTIME_PRIVATE_H_
3
4 #ifndef WIN32
5 #include <sys/time.h>
6 #endif
7 #include "rawtime.h"
8
9 namespace Msp {
10 namespace Time {
11
12 #ifndef WIN32
13 // Internal conversion utilities, not intended for public use
14 timeval rawtime_to_timeval(RawTime);
15 timespec rawtime_to_timespec(RawTime);
16 #endif
17
18 } // namespace Time
19 } // namespace Msp
20
21 #endif