better handling of filenames

This commit is contained in:
Phuntsok Drak-pa
2019-03-20 12:34:46 +01:00
parent 0295de096d
commit 5f198555f0
4 changed files with 40 additions and 19 deletions

View File

@@ -1,9 +1,11 @@
#ifndef GENETIC_IMAGE_INCLUDE_GENIMG_PARSEARGS_HH_
#define GENETIC_IMAGE_INCLUDE_GENIMG_PARSEARGS_HH_
#include <filesystem>
#include <string>
#include <tuple>
std::tuple<std::string, std::string, bool, int> parse_args(int, char **);
std::tuple<std::filesystem::path, std::filesystem::path, bool, int>
parse_args(int, char **);
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_PARSEARGS_HH_ */