#ifndef TIMESTAMP_HPP #define TIMESTAMP_HPP #include #include #include typedef std::chrono::system_clock::time_point Timestamp; Timestamp ParseTimestamp(const std::string& ts); #endif