]> git.tdb.fi Git - libs/core.git/blob - source/time/unix/rawtime_platform.h
Move non-oneliner functions out of RefPtr class declaration
[libs/core.git] / source / time / unix / rawtime_platform.h
1 #ifndef MSP_TIME_RAWTIME_PLATFORM_H_
2 #define MSP_TIME_RAWTIME_PLATFORM_H_
3
4 #include <sys/time.h>
5 #include "rawtime.h"
6
7 namespace Msp {
8 namespace Time {
9
10 timeval rawtime_to_timeval(RawTime);
11 timespec rawtime_to_timespec(RawTime);
12 RawTime timeval_to_rawtime(const timeval &);
13
14 } // namespace Time
15 } // namespace Msp
16
17 #endif