summaryrefslogtreecommitdiff
path: root/src/utils/time.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/time.hpp')
-rw-r--r--src/utils/time.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/utils/time.hpp b/src/utils/time.hpp
new file mode 100644
index 0000000..c71cd9c
--- /dev/null
+++ b/src/utils/time.hpp
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <ctime>
+#include <string>
+
+namespace utils
+{
+std::string to_string(const std::time_t& timestamp);
+std::time_t parse_datetime(const std::string& stamp);
+} \ No newline at end of file