| 2643 | } |
| 2644 | |
| 2645 | int vtkMultiBlockPLOT3DReader::CheckGeometryFile(FILE*& xyzFp) |
| 2646 | { |
| 2647 | if (this->XYZFileName == nullptr || this->XYZFileName[0] == '\0') |
| 2648 | { |
| 2649 | this->SetErrorCode(vtkErrorCode::NoFileNameError); |
| 2650 | vtkErrorMacro(<< "Must specify geometry file"); |
| 2651 | return VTK_ERROR; |
| 2652 | } |
| 2653 | return this->CheckFile(xyzFp, this->XYZFileName); |
| 2654 | } |
| 2655 | |
| 2656 | int vtkMultiBlockPLOT3DReader::CheckFunctionFile(FILE*& fFp) |
| 2657 | { |
no test coverage detected