------------------------------------------------------------------------------
| 110 | |
| 111 | //------------------------------------------------------------------------------ |
| 112 | void vtkDataObjectTree::SetChildMetaData(unsigned int index, vtkInformation* info) |
| 113 | { |
| 114 | if (this->Internals->Children.size() <= index) |
| 115 | { |
| 116 | this->SetNumberOfChildren(index + 1); |
| 117 | } |
| 118 | |
| 119 | vtkDataObjectTreeItem& item = this->Internals->Children[index]; |
| 120 | item.MetaData = info; |
| 121 | } |
| 122 | |
| 123 | //------------------------------------------------------------------------------ |
| 124 | vtkTypeBool vtkDataObjectTree::HasChildMetaData(unsigned int index) |
no test coverage detected