------------------------------------------------------------------------------
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | vtkTypeInt64 vtkXMLParser::TellG() |
| 67 | { |
| 68 | // Standard tellg returns -1 if fail() is true. |
| 69 | if (!this->Stream || vtkXMLParserFail(this->Stream)) |
| 70 | { |
| 71 | return -1; |
| 72 | } |
| 73 | return this->Stream->tellg(); |
| 74 | } |
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | void vtkXMLParser::SeekG(vtkTypeInt64 position) |
no test coverage detected