! @brief Create an element storing a Unicode character string. @param [in] destImageFile The ImageFile where the new node will eventually be stored. @param [in] value The Unicode character string value of the element, in UTF-8 encoding. @details The StringNode class corresponds to the ASTM E57 standard String element. See the class discussion at bottom of StringNode page for more details. The @
| 110 | @see StringNode::value, Node, CompressedVectorNode, CompressedVectorNode::prototype |
| 111 | */ |
| 112 | StringNode::StringNode( const ImageFile &destImageFile, const ustring &value ) : |
| 113 | impl_( new StringNodeImpl( destImageFile.impl(), value ) ) |
| 114 | { |
| 115 | } |
| 116 | |
| 117 | /*! |
| 118 | @brief Is this a root node. |