! @brief Append a child element to end of VectorNode. @param [in] n The node to be added as a child at end of the VectorNode. @details If the VectorNode is homogeneous and already has at least one child, then @a n must be identical to the existing children in every visible characteristic except the stored values. These visible characteristics include number of children (for StructureNode and Vec
| 362 | @see VectorNode::childCount, VectorNode::get(int64_t), StructureNode::set |
| 363 | */ |
| 364 | void VectorNode::append( const Node &n ) |
| 365 | { |
| 366 | impl_->append( n.impl() ); |
| 367 | } |
| 368 | |
| 369 | /*! |
| 370 | @brief Diagnostic function to print internal state of object to output stream in an indented format. |
no outgoing calls
no test coverage detected