mirror of
https://github.com/zerotier/pg_consul.git
synced 2026-05-22 16:22:07 -07:00
16 lines
183 B
C++
16 lines
183 B
C++
#ifndef CPR_TIMEOUT_H
|
|
#define CPR_TIMEOUT_H
|
|
|
|
namespace cpr {
|
|
|
|
class Timeout {
|
|
public:
|
|
Timeout(const long& timeout) : ms(timeout) {}
|
|
|
|
long ms;
|
|
};
|
|
|
|
} // namespace cpr
|
|
|
|
#endif
|