| 146 | } |
| 147 | |
| 148 | int vtkXArrayAccessor::inq_dimlen(int vtkNotUsed(ncid), int dimid, size_t* lenp) |
| 149 | { |
| 150 | if (static_cast<size_t>(dimid) >= Dim.size()) |
| 151 | return NC_EBADDIM; |
| 152 | *lenp = this->DimLen[dimid]; |
| 153 | return NC_NOERR; |
| 154 | } |
| 155 | |
| 156 | int vtkXArrayAccessor::inq_dimname(int vtkNotUsed(ncid), int dimid, char* name) |
| 157 | { |
no test coverage detected