So far i understand it, irrXML can only read an xml file at once resp. write it at once?
This would not really satisfie my needs, althought i found an example in some other Thread, where someone created its own xml class, reading everything in, and the Destructor writes everything out.
That would probably work for me too, but i would find it a distress solution, if no one comes with a better idea.
I would like to illustrate, what i'm thinking of:
Code: Select all
MyXMLFile.getNode(nodeIdentifier).getAttributeValue(attributeIdentifier);
MyXMLFile.getNode(nodeIdentifier).setAttributeValue(attributeIdentifier, newValue);
I also noticed, that there is no such thing, like a getNode(nodeIdentifier) function, but getNodeSomething() from the current node, which i don't find satisfying
Thanks for any suggestions ~