genetic-images/include/genimg/parseargs.hh

15 lines
651 B
C++
Raw Normal View History

#pragma once
2019-03-19 12:49:37 +00:00
2019-03-20 11:34:46 +00:00
#include <filesystem>
2019-03-19 12:49:37 +00:00
#include <tuple>
2019-04-13 13:09:07 +00:00
[[nodiscard]] auto parse_args(int, char**) -> std::tuple<std::filesystem::path,
std::filesystem::path,
int,
int,
int,
int,
int,
2019-04-13 13:09:07 +00:00
bool,
bool>;