@{ * Get the input to this mapper as a vtkDataSet, instead of as a * more specialized data type that the subclass may return from * GetInput(). This method is provided for use in the wrapper languages, * C++ programmers should use GetInput() instead. */
| 423 | * C++ programmers should use GetInput() instead. |
| 424 | */ |
| 425 | vtkDataSet* GetDataSetInput() { return this->GetInput(); } |
| 426 | VTK_DEPRECATED_IN_9_5_0("Use GetDataSetInput() instead.") |
| 427 | vtkDataSet* GetInputAsDataSet() { return this->GetDataSetInput(); } |
| 428 | ///@} |
no test coverage detected