------------------------------------------------------------------------------
| 47 | |
| 48 | //------------------------------------------------------------------------------ |
| 49 | vtkUndirectedGraph* vtkUndirectedGraph::GetData(vtkInformation* info) |
| 50 | { |
| 51 | return info ? vtkUndirectedGraph::SafeDownCast(info->Get(DATA_OBJECT())) : nullptr; |
| 52 | } |
| 53 | |
| 54 | //------------------------------------------------------------------------------ |
| 55 | vtkUndirectedGraph* vtkUndirectedGraph::GetData(vtkInformationVector* v, int i) |
nothing calls this directly
no test coverage detected