Go to the source code of this file.
Functions | |
void | ixmlNodeList_init (IXML_NodeList *nList) |
Initializes a nodelist. | |
IXML_Node * | ixmlNodeList_item (IXML_NodeList *nList, unsigned long index) |
Retrieves a Node from a NodeList specified by a numerical index. | |
int | ixmlNodeList_addToNodeList (IXML_NodeList **nList, IXML_Node *add) |
Add a node to nodelist. | |
unsigned long | ixmlNodeList_length (IXML_NodeList *nList) |
Returns the number of Nodes in a NodeList. | |
void | ixmlNodeList_free (IXML_NodeList *nList) |
Frees a NodeList object. | |
void ixmlNodeList_init | ( | IXML_NodeList * | nList | ) |
Initializes a nodelist.
[in,out] | nList | The NodeList to initialize. |
Definition at line 43 of file nodeList.cpp.
int ixmlNodeList_addToNodeList | ( | IXML_NodeList ** | nList, |
IXML_Node * | add | ||
) |
Add a node to nodelist.
[in] | nList | The pointer to the nodelist. |
[in] | add | The node to add. |
Definition at line 74 of file nodeList.cpp.