! @brief Create an E57 element for storing an double precision IEEE floating point number. @param [in] destImageFile The ImageFile where the new node will eventually be stored. @param [in] value The double precision IEEE floating point value of the element. @param [in] precision The precision of IEEE floating point to use. May be ::PrecisionSingle or ::PrecisionDouble. @param [in] minimum The sma
| 150 | @see FloatPrecision, FloatNode::value, Node, CompressedVectorNode, CompressedVectorNode::prototype |
| 151 | */ |
| 152 | FloatNode::FloatNode( const ImageFile &destImageFile, double value, FloatPrecision precision, |
| 153 | double minimum, double maximum ) : |
| 154 | impl_( new FloatNodeImpl( destImageFile.impl(), value, precision, minimum, maximum ) ) |
| 155 | { |
| 156 | impl_->validateValue(); |
| 157 | } |
| 158 | |
| 159 | /*! |
| 160 | @brief Is this a root node. |
nothing calls this directly
no test coverage detected