------------------------------------------------------------------------------
| 421 | |
| 422 | //------------------------------------------------------------------------------ |
| 423 | void vtkXMLReader::CloseStream() |
| 424 | { |
| 425 | if (this->Stream) |
| 426 | { |
| 427 | if (this->ReadFromInputString) |
| 428 | { |
| 429 | this->CloseVTKString(); |
| 430 | } |
| 431 | else |
| 432 | { |
| 433 | this->CloseVTKFile(); |
| 434 | } |
| 435 | this->Stream = nullptr; |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | //------------------------------------------------------------------------------ |
| 440 | void vtkXMLReader::CloseVTKFile() |
no test coverage detected