Add a dataset to the list of data to process.
| 37 | |
| 38 | // Add a dataset to the list of data to process. |
| 39 | void vtkProgrammableAttributeDataFilter::AddInput(vtkDataSet* ds) |
| 40 | { |
| 41 | if (this->InputList->IndexOfFirstOccurrence(ds) < 0) |
| 42 | { |
| 43 | this->Modified(); |
| 44 | this->InputList->AddItem(ds); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | // Remove a dataset from the list of data to process. |
| 49 | void vtkProgrammableAttributeDataFilter::RemoveInput(vtkDataSet* ds) |
no test coverage detected