11 lines
215 B
C++
11 lines
215 B
C++
#ifndef TIMESTAMP_HPP
|
|
#define TIMESTAMP_HPP
|
|
#include <chrono>
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
|
|
typedef std::chrono::system_clock::time_point Timestamp;
|
|
|
|
Timestamp ParseTimestamp(const std::string& ts);
|
|
|
|
#endif |