/* This file is part of remwharead. * Copyright © 2019 tastytea * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef REMWHAREAD_TIME_HPP #define REMWHAREAD_TIME_HPP #include #include using std::string; using std::chrono::system_clock; using time_point = system_clock::time_point; // Convert ISO 8601 time-string or SQLite time-string to time_point. const time_point string_to_timepoint(const string &strtime, bool sqlite = false); // Convert time_point to USO 8601 time-string or SQLite time-string. const string timepoint_to_string(const time_point &tp, bool sqlite = false); #endif // REMWHAREAD_TIME_HPP