Changeset 3323 for code/trunk/src/core/CommandLine.h
- Timestamp:
- Jul 19, 2009, 3:11:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/CommandLine.h
r3300 r3323 142 142 143 143 //! Parse redirection to internal member method. 144 static void parseCommandLine( int argc, char** argv) { _getInstance()._parseCommandLine(argc, argv); }144 static void parseCommandLine(const std::string& cmdLine) { _getInstance()._parseCommandLine(cmdLine); } 145 145 static void parseFile() { _getInstance()._parseFile(); } 146 146 … … 174 174 static CommandLine& _getInstance(); 175 175 176 void _parseCommandLine( int argc, char** argv);176 void _parseCommandLine(const std::string& cmdLine); 177 177 void _parseFile(); 178 178 void _parse(const std::vector<std::string>& arguments, bool bParsingFile);
Note: See TracChangeset
for help on using the changeset viewer.