4 * Created on: Sep 15, 2012
8 #ifndef APP_ARGUMENTS_H_
9 #define APP_ARGUMENTS_H_
15 /// Specialized argument interpreter.
16 /// Reads command line arguments via Read(int, char**) function.
36 void Read(int argc, char **argv);
38 RunLevel GetRunLevel() const { return runlevel; }
40 const std::vector<char *> &Infiles() const { return infiles; }
42 bool OutfileSet() const { return outfile; }
43 const char *OutfilePath() const { return outfile; }
46 std::vector<char *> infiles;
54 #endif /* APP_ARGUMENTS_H_ */