| 50 | } |
| 51 | |
| 52 | const IXmlNode *IXmlFile::GetNode(const std::string &tag) const { |
| 53 | return root_node_ ? root_node_->GetNode(tag) : nullptr; |
| 54 | } |
| 55 | |
| 56 | IXmlNode &IXmlFile::RootName(const std::string &name) { |
| 57 | if (!root_node_) { |
no outgoing calls
no test coverage detected