| 289 | } |
| 290 | |
| 291 | void FileReader::increment(size_t n) { |
| 292 | if (cursor_ + n > impl_->size()) throw std::out_of_range("increment past EOF"); |
| 293 | cursor_ += n; |
| 294 | } |
| 295 | |
| 296 | void IfcParse::FileReader::pushNextPage(const std::string& data) |
| 297 | { |
no test coverage detected