------------------------------------------------------------------------------
| 773 | |
| 774 | //------------------------------------------------------------------------------ |
| 775 | void vtkChacoReader::CloseCurrentFile() |
| 776 | { |
| 777 | if (this->CurrentGeometryFP) |
| 778 | { |
| 779 | fclose(this->CurrentGeometryFP); |
| 780 | fclose(this->CurrentGraphFP); |
| 781 | this->CurrentGeometryFP = nullptr; |
| 782 | this->CurrentGraphFP = nullptr; |
| 783 | } |
| 784 | } |
| 785 | |
| 786 | //------------------------------------------------------------------------------ |
| 787 | int vtkChacoReader::OpenCurrentFile() |
no outgoing calls
no test coverage detected