------------------------------------------------------------------------------
| 227 | |
| 228 | //------------------------------------------------------------------------------ |
| 229 | int vtkNetCDFCAMReader::CanReadFile(const char* fileName) |
| 230 | { |
| 231 | Internal* internals = new Internal(nullptr); |
| 232 | if (!internals->openPoints(fileName)) |
| 233 | { |
| 234 | delete internals; |
| 235 | return 0; |
| 236 | } |
| 237 | delete internals; |
| 238 | return 1; |
| 239 | } |
| 240 | |
| 241 | //------------------------------------------------------------------------------ |
| 242 | void vtkNetCDFCAMReader::SetFileName(const char* fileName) |
nothing calls this directly
no test coverage detected