| 23 | virtual SerializationNode *getSectionOpt(const char *name) = 0; |
| 24 | |
| 25 | SerializationNode *getNode(const char *name) { return this->getNodeOpt(name); } |
| 26 | SerializationNode *getNextSibling(const char *name) { return this->getNextSiblingOpt(name); } |
| 27 | SerializationNode *getSection(const char *name) { return this->getSectionOpt(name); } |
| 28 |
no test coverage detected