| 2688 | // Code: vtkFoamFile |
| 2689 | |
| 2690 | int vtkFoamFile::ReadNext() |
| 2691 | { |
| 2692 | if (!this->InflateNext(this->Superclass::Outbuf + 1, this->OutputBufferSize)) |
| 2693 | { |
| 2694 | return this->CloseIncludedFile() ? this->Getc() : EOF; |
| 2695 | } |
| 2696 | return *this->Superclass::BufPtr++; |
| 2697 | } |
| 2698 | |
| 2699 | // specialized for reading an integer value. |
| 2700 | // not using the standard strtol() for speed reason. |
no test coverage detected