* Subclasses should override this method to do the actual execution. * For backwards compatibility, the default implementation returns -1. If -1 * is returned, its assumed that this method is not overridden and the * `RequestData` must be called, if possible. However, `RequestData` is only * supported if input type is not vtkPartitionedDataSetCollection or * vtkPartitionedDataSet.
| 83 | * vtkPartitionedDataSet. |
| 84 | */ |
| 85 | virtual int Execute(vtkInformation* vtkNotUsed(request), |
| 86 | const std::vector<vtkSmartPointer<vtkDataObject>>& vtkNotUsed(inputs), |
| 87 | vtkInformationVector* vtkNotUsed(outputVector)) |
| 88 | { |
| 89 | return -1; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * This is called by the superclass. |
no outgoing calls
no test coverage detected