Changeset 853 for code/branches/core/src/util/Convert.h
- Timestamp:
- Mar 5, 2008, 6:38:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core/src/util/Convert.h
r848 r853 397 397 bool operator()(orxonox::Vector2* output, const std::string& input) const 398 398 { 399 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', ' (', ')', '\0');399 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', '\0', '\0', '\0'); 400 400 401 401 if (tokens.size() >= 2) … … 420 420 bool operator()(orxonox::Vector3* output, const std::string& input) const 421 421 { 422 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', ' (', ')', '\0');422 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', '\0', '\0', '\0'); 423 423 424 424 if (tokens.size() >= 3) … … 445 445 bool operator()(orxonox::Vector4* output, const std::string& input) const 446 446 { 447 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', ' (', ')', '\0');447 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', '\0', '\0', '\0'); 448 448 449 449 if (tokens.size() >= 4) … … 472 472 bool operator()(orxonox::Quaternion* output, const std::string& input) const 473 473 { 474 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', ' (', ')', '\0');474 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', '\0', '\0', '\0'); 475 475 476 476 if (tokens.size() >= 4) … … 499 499 bool operator()(orxonox::ColourValue* output, const std::string& input) const 500 500 { 501 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', ' (', ')', '\0');501 SubString tokens(input, ",", SubString::WhiteSpaces, false, '\\', '"', '\0', '\0', '\0'); 502 502 503 503 if (tokens.size() >= 4)
Note: See TracChangeset
for help on using the changeset viewer.