| 4 | namespace Base { |
| 5 | |
| 6 | bool String::IsSpace( const char& ch ) |
| 7 | { |
| 8 | return ch==' '; |
| 9 | } |
| 10 | |
| 11 | void String::Split(const std::string& str, const std::string& separators, TSeqStr& tokens, int options) |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected