| 2654 | } |
| 2655 | |
| 2656 | int vtkMultiBlockPLOT3DReader::CheckFunctionFile(FILE*& fFp) |
| 2657 | { |
| 2658 | if (this->FunctionFileName == nullptr || this->FunctionFileName[0] == '\0') |
| 2659 | { |
| 2660 | this->SetErrorCode(vtkErrorCode::NoFileNameError); |
| 2661 | vtkErrorMacro(<< "Must specify geometry file"); |
| 2662 | return VTK_ERROR; |
| 2663 | } |
| 2664 | return this->CheckFile(fFp, this->FunctionFileName); |
| 2665 | } |
| 2666 | |
| 2667 | int vtkMultiBlockPLOT3DReader::GetByteCountSize() |
| 2668 | { |