--------------------------------------------------------------------------------------------------
| 718 | |
| 719 | //-------------------------------------------------------------------------------------------------- |
| 720 | bool vtkNetCDFUGRIDReader::CheckError(int error) |
| 721 | { |
| 722 | if (error != NC_NOERR) |
| 723 | { |
| 724 | vtkErrorMacro( |
| 725 | "Failed to read information of file \"" << this->FileName << "\": " << nc_strerror(error)); |
| 726 | return false; |
| 727 | } |
| 728 | |
| 729 | return true; |
| 730 | } |
| 731 | |
| 732 | //-------------------------------------------------------------------------------------------------- |
| 733 | std::string vtkNetCDFUGRIDReader::GetVariableName(int var) |
no test coverage detected