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