diff options
Diffstat (limited to 'app/source/Cplt/Utils/Time.hpp')
-rw-r--r-- | app/source/Cplt/Utils/Time.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/source/Cplt/Utils/Time.hpp b/app/source/Cplt/Utils/Time.hpp new file mode 100644 index 0000000..fbbd3b2 --- /dev/null +++ b/app/source/Cplt/Utils/Time.hpp @@ -0,0 +1,11 @@ +#pragma once + +#include <chrono> +#include <string> + +namespace TimeUtils { + +std::string StringifyTimePoint(std::chrono::time_point<std::chrono::system_clock> tp); +std::string StringifyTimeStamp(int64_t timeStamp); + +} // namespace TimeUtils |