1 #ifndef APP_ARGUMENTS_H_
2 #define APP_ARGUMENTS_H_
8 /// Specialized argument interpreter.
9 /// Reads command line arguments via Read(int, char**) function.
29 void Read(int argc, char **argv);
31 RunLevel GetRunLevel() const { return runlevel; }
33 const std::vector<char *> &Infiles() const { return infiles; }
35 bool OutfileSet() const { return outfile; }
36 const char *OutfilePath() const { return outfile; }
39 std::vector<char *> infiles;