| 73 | } |
| 74 | |
| 75 | void vtkAssemblyPath::ShallowCopy(vtkAssemblyPath* path) |
| 76 | { |
| 77 | this->RemoveAllItems(); |
| 78 | |
| 79 | vtkAssemblyNode* node; |
| 80 | for (path->InitTraversal(); (node = path->GetNextNode());) |
| 81 | { |
| 82 | this->vtkCollection::AddItem(node); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | vtkMTimeType vtkAssemblyPath::GetMTime() |
| 87 | { |
nothing calls this directly
no test coverage detected