------------------------------------------------------------------------------
| 27 | |
| 28 | //------------------------------------------------------------------------------ |
| 29 | vtkDataObjectTree* vtkDataObjectTree::GetData(vtkInformation* info) |
| 30 | { |
| 31 | return info ? vtkDataObjectTree::SafeDownCast(info->Get(DATA_OBJECT())) : nullptr; |
| 32 | } |
| 33 | |
| 34 | //------------------------------------------------------------------------------ |
| 35 | vtkDataObjectTree* vtkDataObjectTree::GetData(vtkInformationVector* v, int i) |
nothing calls this directly
no test coverage detected