aboutsummaryrefslogtreecommitdiff
path: root/app/source/Cplt/Utils/Time.hpp
blob: fbbd3b20fe59efbed0d40a9a92f528cda193e4c2 (plain)
1
2
3
4
5
6
7
8
9
10
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