genetic-images/include/genimg/parseargs.hh
Phuntsok Drak-pa 8a34a40600 method 5 DONE
2019-04-14 03:58:49 +02:00

16 lines
705 B
C++

#pragma once
#include <filesystem>
#include <tuple>
/// \brief Parses the arguments passed to the program
[[nodiscard]] auto parse_args(int, char**) -> std::tuple<std::filesystem::path,
std::filesystem::path,
int,
int,
int,
int,
int,
bool,
bool>;