diff options
author | rtk0c <[email protected]> | 2021-04-28 21:25:55 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-04-28 21:28:34 -0700 |
commit | 538e804fc9beb83e711a210ffbb6badc15f285d5 (patch) | |
tree | 6157a4065cfca3204f3406a4533095214ec3e04b /core/src/Utils/Time.hpp | |
parent | 00fd95526677d670d002ca81069636f0f74b91f7 (diff) |
Add table visualization for purchases
Diffstat (limited to 'core/src/Utils/Time.hpp')
-rw-r--r-- | core/src/Utils/Time.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/src/Utils/Time.hpp b/core/src/Utils/Time.hpp new file mode 100644 index 0000000..1f5a048 --- /dev/null +++ b/core/src/Utils/Time.hpp @@ -0,0 +1,7 @@ +#pragma once + +#include <string> +#include <chrono> + +std::string StringifyTimePoint(std::chrono::time_point<std::chrono::system_clock> tp); +std::string StringifyTimeStamp(int64_t timeStamp); |