my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
283 B

3 years ago
  1. #ifndef ROMKATV_GITSTATUS_TIME_H_
  2. #define ROMKATV_GITSTATUS_TIME_H_
  3. #include <chrono>
  4. namespace gitstatus {
  5. using Clock = std::chrono::steady_clock;
  6. using Time = Clock::time_point;
  7. using Duration = Clock::duration;
  8. } // namespace gitstatus
  9. #endif // ROMKATV_GITSTATUS_TIME_H_