! @brief Create an element for storing a sequence of bytes with an opaque format. @param [in] destImageFile The ImageFile where the new node will eventually be stored. @param [in] byteCount The number of bytes reserved in the ImageFile for holding the blob. @details The BlobNode class corresponds to the ASTM E57 standard Blob element. See the class discussion at bottom of BlobNode page for mo
| 134 | @see Node, BlobNode::read, BlobNode::write |
| 135 | */ |
| 136 | BlobNode::BlobNode( const ImageFile &destImageFile, int64_t byteCount ) : |
| 137 | impl_( new BlobNodeImpl( destImageFile.impl(), byteCount ) ) |
| 138 | { |
| 139 | } |
| 140 | |
| 141 | /*! |
| 142 | @brief Is this a root node. |