acl/lib_acl_cpp/samples/util.h

15 lines
203 B
C
Raw Normal View History

#pragma once
2014-11-19 00:25:21 +08:00
2015-05-21 21:49:35 +08:00
#ifdef MINGW
#include <sys/time.h>
#endif
2014-11-19 00:25:21 +08:00
class util
{
public:
util() {}
~util() {}
static double stamp_sub(const struct timeval *from, const struct timeval *sub_by);
};