X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Ftime%2Frawtime_private.h;fp=source%2Ftime%2Frawtime_private.h;h=566d5a61589e7fa85c6f12b090f2ab8eb78608fc;hb=03bacb2343eb5d17819732582c0866f087e9ce27;hp=0000000000000000000000000000000000000000;hpb=4c8b6a16bfe62541bc68aa0d3827158c9b9617da;p=libs%2Fcore.git diff --git a/source/time/rawtime_private.h b/source/time/rawtime_private.h new file mode 100644 index 0000000..566d5a6 --- /dev/null +++ b/source/time/rawtime_private.h @@ -0,0 +1,21 @@ +#ifndef MSP_TIME_RAWTIME_PRIVATE_H_ +#define MSP_TIME_RAWTIME_PRIVATE_H_ + +#ifndef WIN32 +#include +#endif +#include "rawtime.h" + +namespace Msp { +namespace Time { + +#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 + +#endif