xmlParser
2.44
|
Functions | |
static XMLNode | XMLNode::createXMLTopNode_WOSD (XMLSTR lpszName, char isDeclaration=FALSE) |
Create the top node of an XMLNode structure. More... | |
XMLNode | XMLNode::addChild_WOSD (XMLSTR lpszName, char isDeclaration=FALSE, XMLElementPosition pos=-1) |
Add a new child node. More... | |
XMLAttribute * | XMLNode::addAttribute_WOSD (XMLSTR lpszName, XMLSTR lpszValue) |
Add a new attribute. More... | |
XMLCSTR | XMLNode::addText_WOSD (XMLSTR lpszValue, XMLElementPosition pos=-1) |
Add a new text content. More... | |
XMLClear * | XMLNode::addClear_WOSD (XMLSTR lpszValue, XMLCSTR lpszOpen=NULL, XMLCSTR lpszClose=NULL, XMLElementPosition pos=-1) |
Add a new clear Tag. More... | |
XMLCSTR | XMLNode::updateName_WOSD (XMLSTR lpszName) |
change node's name More... | |
XMLAttribute * | XMLNode::updateAttribute_WOSD (XMLAttribute *newAttribute, XMLAttribute *oldAttribute) |
if the attribute to update is missing, a new one will be added More... | |
XMLAttribute * | XMLNode::updateAttribute_WOSD (XMLSTR lpszNewValue, XMLSTR lpszNewName=NULL, int i=0) |
if the attribute to update is missing, a new one will be added More... | |
XMLAttribute * | XMLNode::updateAttribute_WOSD (XMLSTR lpszNewValue, XMLSTR lpszNewName, XMLCSTR lpszOldName) |
set lpszNewName=NULL if you don't want to change the name of the attribute if the attribute to update is missing, a new one will be added More... | |
XMLCSTR | XMLNode::updateText_WOSD (XMLSTR lpszNewValue, int i=0) |
if the text to update is missing, a new one will be added More... | |
XMLCSTR | XMLNode::updateText_WOSD (XMLSTR lpszNewValue, XMLCSTR lpszOldValue) |
if the text to update is missing, a new one will be added More... | |
XMLClear * | XMLNode::updateClear_WOSD (XMLSTR lpszNewContent, int i=0) |
if the clearTag to update is missing, a new one will be added More... | |
XMLClear * | XMLNode::updateClear_WOSD (XMLClear *newP, XMLClear *oldP) |
if the clearTag to update is missing, a new one will be added More... | |
XMLClear * | XMLNode::updateClear_WOSD (XMLSTR lpszNewValue, XMLCSTR lpszOldValue) |
if the clearTag to update is missing, a new one will be added More... | |
The strings given as parameters for the "add" and "update" methods that have a name with the postfix "_WOSD" (that means "WithOut String Duplication")(for example "addText_WOSD") will be free'd by the XMLNode class. For example, it means that this is incorrect:
In opposition, this is correct:
Typically, you will never do:
... but rather:
('free(b)' is performed by the XMLNode class)
XMLAttribute* XMLNode::addAttribute_WOSD | ( | XMLSTR | lpszName, |
XMLSTR | lpszValue | ||
) |
Add a new attribute.
XMLNode XMLNode::addChild_WOSD | ( | XMLSTR | lpszName, |
char | isDeclaration = FALSE , |
||
XMLElementPosition | pos = -1 |
||
) |
Add a new child node.
XMLClear* XMLNode::addClear_WOSD | ( | XMLSTR | lpszValue, |
XMLCSTR | lpszOpen = NULL , |
||
XMLCSTR | lpszClose = NULL , |
||
XMLElementPosition | pos = -1 |
||
) |
Add a new clear Tag.
XMLCSTR XMLNode::addText_WOSD | ( | XMLSTR | lpszValue, |
XMLElementPosition | pos = -1 |
||
) |
Add a new text content.
|
static |
Create the top node of an XMLNode structure.
XMLAttribute* XMLNode::updateAttribute_WOSD | ( | XMLAttribute * | newAttribute, |
XMLAttribute * | oldAttribute | ||
) |
if the attribute to update is missing, a new one will be added
XMLAttribute* XMLNode::updateAttribute_WOSD | ( | XMLSTR | lpszNewValue, |
XMLSTR | lpszNewName = NULL , |
||
int | i = 0 |
||
) |
if the attribute to update is missing, a new one will be added
XMLAttribute* XMLNode::updateAttribute_WOSD | ( | XMLSTR | lpszNewValue, |
XMLSTR | lpszNewName, | ||
XMLCSTR | lpszOldName | ||
) |
set lpszNewName=NULL if you don't want to change the name of the attribute if the attribute to update is missing, a new one will be added
if the clearTag to update is missing, a new one will be added
if the clearTag to update is missing, a new one will be added
if the clearTag to update is missing, a new one will be added
if the text to update is missing, a new one will be added