| 49 | } |
| 50 | |
| 51 | void TupleTextFileReader::Rewind() { |
| 52 | if (reader_.is_open()) { |
| 53 | reader_.clear(); |
| 54 | reader_.seekg(0, std::ios::beg); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | Status TupleTextFileReader::GetNext(string* output, bool* eos) { |
| 59 | DCHECK(output != nullptr); |
no test coverage detected