| 147 | void AddDataSetInput(vtkDataSet* ds) { this->AddDataSetInput(ds, nullptr, 0); } |
| 148 | void AddDataSetInputConnection(vtkAlgorithmOutput* in, const char* arrayName, int component); |
| 149 | void AddDataSetInputConnection(vtkAlgorithmOutput* in) |
| 150 | { |
| 151 | this->AddDataSetInputConnection(in, nullptr, 0); |
| 152 | } |
| 153 | ///@} |
| 154 | |
| 155 | ///@{ |
nothing calls this directly
no test coverage detected