! @brief Get absolute pathname of node. @details Nodes are organized into trees (acyclic graphs) by a parent-child relationship between nodes. Each parent-child relationship has an associated elementName string that is unique for a given parent. Any node in a given tree can be identified by a sequence of elementNames of how to get to the node from the root of the tree. An absolute pathname string
| 447 | @see Node::elementName, Node::parent, Node::isRoot |
| 448 | */ |
| 449 | ustring Node::pathName() const |
| 450 | { |
| 451 | return impl_->pathName(); |
| 452 | } |
| 453 | |
| 454 | /*! |
| 455 | @brief Get element name of node. |
no outgoing calls
no test coverage detected