You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
283 B
C
15 lines
283 B
C
5 years ago
|
#ifndef ROMKATV_GITSTATUS_TIME_H_
|
||
|
#define ROMKATV_GITSTATUS_TIME_H_
|
||
|
|
||
|
#include <chrono>
|
||
|
|
||
|
namespace gitstatus {
|
||
|
|
||
|
using Clock = std::chrono::steady_clock;
|
||
|
using Time = Clock::time_point;
|
||
|
using Duration = Clock::duration;
|
||
|
|
||
|
} // namespace gitstatus
|
||
|
|
||
|
#endif // ROMKATV_GITSTATUS_TIME_H_
|