MCPcopy Create free account
hub / github.com/PDAL/PDAL / IntegerNode

Method IntegerNode

plugins/e57/libE57Format/src/IntegerNode.cpp:145–150  ·  view source on GitHub ↗

! @brief Create an E57 element for storing a integer value. @param [in] destImageFile The ImageFile where the new node will eventually be stored. @param [in] value The integer value of the element. @param [in] minimum The smallest value that the element may take. @param [in] maximum The largest value that the element may take. @details An IntegerNode stores an integer value, and a lower and uppe

Source from the content-addressed store, hash-verified

143@see IntegerNode::value, Node, CompressedVectorNode, CompressedVectorNode::prototype
144*/
145IntegerNode::IntegerNode( const ImageFile &destImageFile, int64_t value, int64_t minimum,
146 int64_t maximum ) :
147 impl_( new IntegerNodeImpl( destImageFile.impl(), value, minimum, maximum ) )
148{
149 impl_->validateValue();
150}
151
152/*!
153@brief Is this a root node.

Callers

nothing calls this directly

Calls 3

toStringFunction · 0.70
validateValueMethod · 0.45
typeMethod · 0.45

Tested by

no test coverage detected