------------------------------------------------------------------------------
| 27 | |
| 28 | //------------------------------------------------------------------------------ |
| 29 | void vtkInputStream::StartReading() |
| 30 | { |
| 31 | if (!this->Stream) |
| 32 | { |
| 33 | vtkErrorMacro("StartReading() called with no Stream set."); |
| 34 | return; |
| 35 | } |
| 36 | this->StreamStartPosition = this->Stream->tellg(); |
| 37 | } |
| 38 | |
| 39 | //------------------------------------------------------------------------------ |
| 40 | void vtkInputStream::EndReading() {} |
no outgoing calls
no test coverage detected