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