! @brief Is this a root node. @details A root node has itself as a parent (it is not a child of any node). Newly constructed nodes (before they are inserted into an ImageFile tree) start out as root nodes. It is possible to temporarily create small trees that are unattached to any ImageFile. In these temporary trees, the top-most node will be a root node. After the tree is attached to the ImageFi
| 378 | @see Node::parent, Node::isAttached, CompressedVectorNode::CompressedVectorNode |
| 379 | */ |
| 380 | bool Node::isRoot() const |
| 381 | { |
| 382 | return impl_->isRoot(); |
| 383 | } |
| 384 | |
| 385 | /*! |
| 386 | @brief Return parent of node, or self if a root node. |
no outgoing calls
no test coverage detected