! @brief Get the ImageFile that was declared as the destination for the node when it was created. @details The first argument of the constructors of each of the 8 types of nodes is an ImageFile that indicates which ImageFile the node will eventually be attached to. This function returns that constructor argument. It is an error to attempt to attach the node to a different ImageFile. However it is
| 503 | BlobNode::BlobNode() |
| 504 | */ |
| 505 | ImageFile Node::destImageFile() const |
| 506 | { |
| 507 | return ImageFile( impl_->destImageFile() ); |
| 508 | } |
| 509 | |
| 510 | /*! |
| 511 | @brief Has node been attached into the tree of an ImageFile. |
no test coverage detected