Changes in src/CommandLineParser.cpp [bcd072:97ebf8]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/CommandLineParser.cpp ¶
rbcd072 r97ebf8 36 36 void CommandLineParser::Parse() 37 37 { 38 po::store(po::command_line_parser(argc,argv).options(cmdline_options).run(), vm); 39 po::store(po::command_line_parser(argc,argv).options(visible).run(), vm); 38 po::store(po::command_line_parser(argc,argv).options(cmdline_options).options(visible).positional(inputfile).run(), vm); 40 39 ifstream input; 41 40 input.open("example.cfg"); … … 45 44 po::notify(vm); 46 45 } 46 47 47 48 48 49 /** States whether there are command line arguments.
Note:
See TracChangeset
for help on using the changeset viewer.