simple tokenizer */
| 15 | |
| 16 | /* simple tokenizer */ |
| 17 | StringStream::StringStream(const Ref<Stream<int> >& cin, const std::string& seps, const std::string& endl, bool multiLine) |
| 18 | : cin(cin), endl(endl), multiLine(multiLine) |
| 19 | { |
| 20 | createCharMap(isSepMap,seps); |
| 21 | createCharMap(isValidCharMap,stringChars); |
| 22 | } |
| 23 | |
| 24 | std::string StringStream::next() |
| 25 | { |
nothing calls this directly
no test coverage detected