| 260 | } |
| 261 | |
| 262 | SerializationNode *XMLSerializationNode::addNode(const char *name, const UString &value) |
| 263 | { |
| 264 | auto newNode = this->node.append_child(); |
| 265 | newNode.set_name(name); |
| 266 | newNode.text().set(value.c_str()); |
| 267 | return &this->archive->nodes.emplace_back(this->archive, newNode, this); |
| 268 | } |
| 269 | |
| 270 | SerializationNode *XMLSerializationNode::getNodeOpt(const char *name) |
| 271 | { |
no test coverage detected