| 959 | } |
| 960 | |
| 961 | po::positional_options_description CommandLineParser::positionalOptionsDescription() |
| 962 | { |
| 963 | // All positional options should be interpreted as input files |
| 964 | po::positional_options_description filesPositions; |
| 965 | filesPositions.add(g_strInputFile.c_str(), -1); |
| 966 | return filesPositions; |
| 967 | } |
| 968 | |
| 969 | void CommandLineParser::parseArgs(int _argc, char const* const* _argv) |
| 970 | { |