------------------------------------------------------------------------------
| 41 | |
| 42 | //------------------------------------------------------------------------------ |
| 43 | int vtkInputStream::Seek(vtkTypeInt64 offset) |
| 44 | { |
| 45 | std::streamoff off = static_cast<std::streamoff>(this->StreamStartPosition + offset); |
| 46 | return (this->Stream->seekg(off, std::ios::beg) ? 1 : 0); |
| 47 | } |
| 48 | |
| 49 | //------------------------------------------------------------------------------ |
| 50 | size_t vtkInputStream::Read(void* data, size_t length) |
no outgoing calls