19 std::string input_file;
20 std::string output_file;
31 IO(
void (*help)(),
const std::string &ending)
32 : ending(ending), help(help){};
Implements an input-output interface. Reads the command line for an input file and defines according ...
Definition IO.h:17
const std::string & get_output_file() const
Get the path to output file.
Definition IO.h:54
const std::string & get_input_file() const
Get the path to input file.
Definition IO.h:47
void parse_args(int argc, char *argv[])
Parses command line arguments.
Definition IO.cpp:11
IO(void(*help)(), const std::string &ending)
Construct a new IO object.
Definition IO.h:31