Changeset 708 for code/branches/FICN/src/orxonox/core/ArgReader.cc
- Timestamp:
- Dec 28, 2007, 10:30:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/core/ArgReader.cc
r668 r708 45 45 } 46 46 47 void ArgReader::checkArgument( std::string option, std::string &string, bool must)47 void ArgReader::checkArgument(String option, String &string, bool must) 48 48 { 49 49 int argpos = checkOption(option) + 1; … … 62 62 } 63 63 64 void ArgReader::checkArgument( std::string option, int &integer, bool must)64 void ArgReader::checkArgument(String option, int &integer, bool must) 65 65 { 66 66 int argpos = checkOption(option) + 1; … … 78 78 } 79 79 80 void ArgReader::checkArgument( std::string option, float &floating, bool must)80 void ArgReader::checkArgument(String option, float &floating, bool must) 81 81 { 82 82 int argpos = checkOption(option) + 1; … … 94 94 } 95 95 96 int ArgReader::checkOption( std::string option)96 int ArgReader::checkOption(String option) 97 97 { 98 98 for(int i = 1; i < counter_; i++)
Note: See TracChangeset
for help on using the changeset viewer.