| 268 | } |
| 269 | |
| 270 | SerializationNode *XMLSerializationNode::getNodeOpt(const char *name) |
| 271 | { |
| 272 | auto newNode = this->node.child(name); |
| 273 | if (!newNode) |
| 274 | { |
| 275 | return nullptr; |
| 276 | } |
| 277 | return &this->archive->nodes.emplace_back(this->archive, newNode, this); |
| 278 | } |
| 279 | |
| 280 | SerializationNode *XMLSerializationNode::getNextSiblingOpt(const char *name) |
| 281 | { |
no outgoing calls
no test coverage detected