------------------------------------------------------------------------------
| 438 | |
| 439 | //------------------------------------------------------------------------------ |
| 440 | void vtkXMLReader::CloseVTKFile() |
| 441 | { |
| 442 | if (!this->Stream) |
| 443 | { |
| 444 | vtkErrorMacro("File not open."); |
| 445 | return; |
| 446 | } |
| 447 | if (this->Stream == this->FileStream) |
| 448 | { |
| 449 | delete this->FileStream; |
| 450 | this->FileStream = nullptr; |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | //------------------------------------------------------------------------------ |
| 455 | void vtkXMLReader::CloseVTKString() |
no outgoing calls
no test coverage detected