| 233 | }; |
| 234 | |
| 235 | int FillInputPortInformation(int port, vtkInformation* info) override |
| 236 | { |
| 237 | if (port == 0) |
| 238 | { |
| 239 | info->Set(vtkAlgorithm::INPUT_IS_REPEATABLE(), 1); |
| 240 | return this->Superclass::FillInputPortInformation(port, info); |
| 241 | } |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | int RequestData(vtkInformation* vtkNotUsed(request), vtkInformationVector** inputVector, |
| 246 | vtkInformationVector* outputVector) override |
no test coverage detected