Changeset a37c37
- Timestamp:
- May 8, 2010, 10:57:18 PM (15 years ago)
- Children:
- c93262
- Parents:
- 788eeb
- Location:
- molecuilder/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/CommandLineParser.cpp
r788eeb ra37c37 73 73 void CommandLineParser::Run(int _argc, char **_argv) 74 74 { 75 setOptions( argc,argv);75 setOptions(_argc,_argv); 76 76 Parse(); 77 77 } -
molecuilder/src/CommandLineParser.hpp
r788eeb ra37c37 16 16 17 17 18 class CommandLineParser : public Singleton<CommandLineParser, false> { 18 class CommandLineParser : public Singleton<CommandLineParser> { 19 friend class Singleton<CommandLineParser>; 19 20 public: 20 virtual ~CommandLineParser();21 21 22 22 // Parses the command line arguments in CommandLineParser::**argv with currently known options. … … 37 37 po::options_description visible; 38 38 39 protected: 40 CommandLineParser(); 39 po::variables_map vm; 41 40 42 41 private: 42 // private constructor and destructor 43 CommandLineParser(); 44 virtual ~CommandLineParser(); 45 43 46 /* The following program_options options_decriptions are used to 44 47 * generate the various cases and call differently in Parse(). … … 46 49 po::options_description cmdline_options; 47 50 po::options_description config_file_options; 48 49 po::variables_map vm;50 51 51 52 // Sets the options from the three cases.
Note:
See TracChangeset
for help on using the changeset viewer.