------------------------------------------------------------------------------
| 23 | |
| 24 | //------------------------------------------------------------------------------ |
| 25 | vtkTypeBool vtkImageImportExecutive::ProcessRequest( |
| 26 | vtkInformation* request, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec) |
| 27 | { |
| 28 | if (this->Algorithm && request->Has(REQUEST_INFORMATION())) |
| 29 | { |
| 30 | // Invoke the callback |
| 31 | vtkImageImport* ii = vtkImageImport::SafeDownCast(this->Algorithm); |
| 32 | ii->InvokeUpdateInformationCallbacks(); |
| 33 | } |
| 34 | |
| 35 | return this->Superclass::ProcessRequest(request, inInfoVec, outInfoVec); |
| 36 | } |
| 37 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected