| 462 } |
464 } |
| 463 |
465 |
| 464 std::vector<str> str::operator/ (str splitstring) {return split(splitstring);} |
466 std::vector<str> str::operator/ (str splitstring) {return split(splitstring);} |
| 465 std::vector<str> str::operator/ (char* splitstring) {return split(splitstring);} |
467 std::vector<str> str::operator/ (char* splitstring) {return split(splitstring);} |
| 466 std::vector<str> str::operator/ (const char* splitstring) {return split(splitstring);} |
468 std::vector<str> str::operator/ (const char* splitstring) {return split(splitstring);} |
| |
469 |
| |
470 str& str::operator+= (vertex vrt) { |
| |
471 appendformat ("%s", vrt.getStringRep (false).chars()); |
| |
472 return *this; |
| |
473 } |