blob: b17aadfec20c48e277768ac25543b9c02d0a6ef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef CORE_EPOCH_HH
#define CORE_EPOCH_HH 1
#pragma once
namespace epoch
{
std::uint64_t seconds(void);
std::uint64_t milliseconds(void);
std::uint64_t microseconds(void);
} // namespace epoch
namespace epoch
{
std::int64_t signed_seconds(void);
std::int64_t signed_milliseconds(void);
std::int64_t signed_microseconds(void);
} // namespace epoch
#endif // CORE_EPOCH_HH
|