/* 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_PARSE_OPTIONS_HPP #define REMWHAREAD_PARSE_OPTIONS_HPP #include #include #include #include #include #include "types.hpp" #include "time.hpp" using std::string; using std::vector; using std::array; using std::chrono::system_clock; using time_point = system_clock::time_point; using std::uint8_t; typedef struct options { vector tags; export_format format = export_format::undefined; string file; array span = {{ time_point(), system_clock::now() }}; string uri; string search_tags; string search_all; bool archive = true; uint8_t status_code = 0; options(); explicit options(const uint8_t &status); } options; // Parse command-line options. const options parse_options(const int argc, const char *argv[]); #endif // REMWHAREAD_PARSE_OPTIONS_HPP