2019-04-13 17:46:04 +00:00
|
|
|
#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,
|
2019-04-13 17:46:04 +00:00
|
|
|
int,
|
2019-04-13 13:09:07 +00:00
|
|
|
bool,
|
|
|
|
bool>;
|