------------------------------------------------------------------------------
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | void vtkXMLParser::SeekG(vtkTypeInt64 position) |
| 78 | { |
| 79 | // Standard seekg does nothing if fail() is true. |
| 80 | if (!this->Stream || vtkXMLParserFail(this->Stream)) |
| 81 | { |
| 82 | return; |
| 83 | } |
| 84 | this->Stream->seekg(std::streampos(position)); |
| 85 | } |
| 86 | |
| 87 | //------------------------------------------------------------------------------ |
| 88 | int vtkXMLParser::Parse(const char* inputString) |
no test coverage detected