IncredibleXMLParser
3.05
|
Functions | |
void | IXMLNode::deleteNodeContent () |
The "deleteNodeContent" function forces the deletion of the content of this IXMLNode and the subtree. More... | |
void | IXMLNode::deleteAttribute (int i=0) |
Delete the ith attribute of the current IXMLNode. More... | |
void | IXMLNode::deleteAttribute (IXMLCStr pName) |
Delete the attribute with the given name (the "strcmp" function is used to find the right attribute) More... | |
void | IXMLNode::deleteAttribute (IXMLAttribute *anAttribute) |
Delete the attribute with the name "anAttribute->pName" (the "strcmp" function is used to find the right attribute) More... | |
void | IXMLNode::deleteText (int i=0) |
Delete the Ith text content of the current IXMLNode. More... | |
void | IXMLNode::deleteText (IXMLCStr pValue) |
Delete the text content "pValue" inside the current IXMLNode (direct "pointer-to-pointer" comparison is used to find the right text) More... | |
void | IXMLNode::deleteClear (int i=0) |
Delete the Ith clear tag inside the current IXMLNode. More... | |
void | IXMLNode::deleteClear (IXMLCStr pValue) |
Delete the clear tag "pValue" inside the current IXMLNode (direct "pointer-to-pointer" comparison is used to find the clear tag) More... | |
void | IXMLNode::deleteClear (IXMLClear *p) |
Delete the clear tag "p" inside the current IXMLNode (direct "pointer-to-pointer" comparison on the pName of the clear tag is used to find the clear tag) More... | |
See the functions example3() and example5() for some usage examples.
void IXMLNode::deleteAttribute | ( | int | i = 0 | ) |
Delete the ith attribute of the current IXMLNode.
Referenced by example3().
void IXMLNode::deleteAttribute | ( | IXMLCStr | pName | ) |
Delete the attribute with the given name (the "strcmp" function is used to find the right attribute)
void IXMLNode::deleteAttribute | ( | IXMLAttribute * | anAttribute | ) |
Delete the attribute with the name "anAttribute->pName" (the "strcmp" function is used to find the right attribute)
void IXMLNode::deleteClear | ( | int | i = 0 | ) |
Delete the Ith clear tag inside the current IXMLNode.
void IXMLNode::deleteClear | ( | IXMLCStr | pValue | ) |
Delete the clear tag "pValue" inside the current IXMLNode (direct "pointer-to-pointer" comparison is used to find the clear tag)
void IXMLNode::deleteClear | ( | IXMLClear * | p | ) |
Delete the clear tag "p" inside the current IXMLNode (direct "pointer-to-pointer" comparison on the pName of the clear tag is used to find the clear tag)
void IXMLNode::deleteNodeContent | ( | ) |
The "deleteNodeContent" function forces the deletion of the content of this IXMLNode and the subtree.
Referenced by example3(), and example5().
void IXMLNode::deleteText | ( | int | i = 0 | ) |
Delete the Ith text content of the current IXMLNode.
Referenced by example3().