diff --git a/std/time.hpp b/std/time.hpp new file mode 100644 index 0000000000..c535b83e50 --- /dev/null +++ b/std/time.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include "common_defines.hpp" +#include "target_os.hpp" + +#ifdef new +#undef new +#endif + +// for gettimeofday and GetSystemTimeAsFileTime +#ifdef OMIM_OS_WINDOWS + #include "windows.hpp" +#else + #include +#endif + +#ifdef DEBUG_NEW +#define new DEBUG_NEW +#endif