------------------------------------------------------------------------------
| 83 | |
| 84 | //------------------------------------------------------------------------------ |
| 85 | vtkDataObject* vtkDataObjectTree::GetChild(unsigned int index) |
| 86 | { |
| 87 | if (index < this->Internals->Children.size()) |
| 88 | { |
| 89 | return this->Internals->Children[index].DataObject; |
| 90 | } |
| 91 | |
| 92 | return nullptr; |
| 93 | } |
| 94 | |
| 95 | //------------------------------------------------------------------------------ |
| 96 | vtkInformation* vtkDataObjectTree::GetChildMetaData(unsigned int index) |
no test coverage detected