------------------------------------------------------------------------------
| 401 | |
| 402 | //------------------------------------------------------------------------------ |
| 403 | vtkADIOS2CoreImageReader::vtkADIOS2CoreImageReader() |
| 404 | : DimensionArrayAsCell(true) |
| 405 | , IsColumnMajor(false) |
| 406 | , Impl(new vtkADIOS2CoreImageReaderImpl) |
| 407 | { |
| 408 | this->SetController(vtkMultiProcessController::GetGlobalController()); |
| 409 | this->SetNumberOfInputPorts(0); |
| 410 | this->SetNumberOfOutputPorts(1); |
| 411 | this->Origin[0] = this->Origin[1] = this->Origin[2] = 0.0; |
| 412 | this->Spacing[0] = this->Spacing[1] = this->Spacing[2] = 1.0; |
| 413 | } |
| 414 | |
| 415 | //------------------------------------------------------------------------------ |
| 416 | vtkADIOS2CoreImageReader::~vtkADIOS2CoreImageReader() = default; |
nothing calls this directly
no test coverage detected