X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Funix%2Frawtime_platform.h;fp=source%2Ftime%2Funix%2Frawtime_platform.h;h=8f9f6336c96514ae5d62a3dfd43907e4a141dc67;hp=0000000000000000000000000000000000000000;hb=609c9a508cfdc7b42c46c4f21d17639204165a00;hpb=b4806214e905752617691f851717033fd3f266c2 diff --git a/source/time/unix/rawtime_platform.h b/source/time/unix/rawtime_platform.h new file mode 100644 index 0000000..8f9f633 --- /dev/null +++ b/source/time/unix/rawtime_platform.h @@ -0,0 +1,17 @@ +#ifndef MSP_TIME_RAWTIME_PLATFORM_H_ +#define MSP_TIME_RAWTIME_PLATFORM_H_ + +#include +#include "rawtime.h" + +namespace Msp { +namespace Time { + +timeval rawtime_to_timeval(RawTime); +timespec rawtime_to_timespec(RawTime); +RawTime timeval_to_rawtime(const timeval &); + +} // namespace Time +} // namespace Msp + +#endif