------------------------------------------------------------------------------
| 702 | |
| 703 | //------------------------------------------------------------------------------ |
| 704 | int vtkDataAssembly::GetFirstNodeByPath(const char* path) const |
| 705 | { |
| 706 | const auto& internals = (*this->Internals); |
| 707 | auto node = internals.FindNode(vtkDataAssembly::GetRootNode()).first_element_by_path(path); |
| 708 | return node ? node.attribute("id").as_int() : -1; |
| 709 | } |
| 710 | |
| 711 | //------------------------------------------------------------------------------ |
| 712 | int vtkDataAssembly::FindOrCreateNodeAtPath(const char* path, int parent) |
no test coverage detected