mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-01 03:17:37 +08:00
11 lines
156 B
C++
11 lines
156 B
C++
#pragma once
|
|
|
|
class util
|
|
{
|
|
public:
|
|
util() {}
|
|
~util() {}
|
|
|
|
static double stamp_sub(const struct timeval *from, const struct timeval *sub_by);
|
|
};
|