Back to Adaptive Vision Library website

You are here: Start » Function Reference » Xml » Xml_AddChildNodes_OfArray

Xml_AddChildNodes_OfArray


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Appends new children nodes to the XML node.

Syntax

void avl::Xml_AddChildNodes_OfArray
(
	const avl::XmlNode& inParent,
	const atl::Array<avl::XmlNode>& inChildren,
	avl::XmlNode& outNode
)

Parameters

Name Type Default Description
inParent const XmlNode& Parent XML node to which new nodes will be added.
inChildren const Array<XmlNode>& Nodes to be added.
outNode XmlNode& New node with added nodes.

Description

This filter appends new nodes from array as children to the selected node. New nodes should be created using Xml_CreateNode.

Errors

Error type Description
DomainError Invalid inParent in Xml_AddChildNodes_OfArray.
DomainError Invalid element inChild in Xml_AddChildNodes_OfArray.

See Also