! @brief Create an empty StructureNode. @param [in] destImageFile The ImageFile where the new node will eventually be stored. @details A StructureNode is a container for collections of named E57 nodes. The @a destImageFile indicates which ImageFile the StructureNode will eventually be attached to. A node is attached to an ImageFile by adding it underneath the predefined root of the ImageFile (go
| 133 | @see Node |
| 134 | */ |
| 135 | StructureNode::StructureNode( const ImageFile &destImageFile ) : |
| 136 | impl_( new StructureNodeImpl( destImageFile.impl() ) ) |
| 137 | { |
| 138 | } |
| 139 | |
| 140 | /*! |
| 141 | @brief Is this a root node. |