| 161 | void RemoveDataSetInput(vtkDataSet* ds) { this->RemoveDataSetInput(ds, nullptr, 0); } |
| 162 | void RemoveDataSetInputConnection(vtkAlgorithmOutput* in, const char* arrayName, int component); |
| 163 | void RemoveDataSetInputConnection(vtkAlgorithmOutput* in) |
| 164 | { |
| 165 | this->RemoveDataSetInputConnection(in, nullptr, 0); |
| 166 | } |
| 167 | ///@} |
| 168 | |
| 169 | /** |
nothing calls this directly
no test coverage detected