------------------------------------------------------------------------------
| 177 | |
| 178 | //------------------------------------------------------------------------------ |
| 179 | int vtkForEach::RequestUpdateExtent(vtkInformation* vtkNotUsed(request), |
| 180 | vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 181 | { |
| 182 | if (!this->Internal->Range) |
| 183 | { |
| 184 | vtkErrorMacro("Must set Range before requesting update extent"); |
| 185 | return 0; |
| 186 | } |
| 187 | return this->Internal->Range->RequestUpdateExtent( |
| 188 | this->Internal->CurrentIteration, inputVector, outputVector); |
| 189 | } |
| 190 | |
| 191 | //------------------------------------------------------------------------------ |
| 192 | int vtkForEach::RequestData(vtkInformation* vtkNotUsed(request), vtkInformationVector** inputVector, |
no outgoing calls
no test coverage detected