| 62 | } |
| 63 | |
| 64 | const char* GetChildElementText(tinyxml2::XMLElement* fatherElement, const char* childName) { |
| 65 | tinyxml2::XMLElement* childElement = fatherElement->FirstChildElement(childName); |
| 66 | if (childElement == nullptr) { |
| 67 | return nullptr; |
| 68 | } |
| 69 | return childElement->GetText(); |
| 70 | } |
| 71 | |
| 72 | } // namespace exporter |
no outgoing calls
no test coverage detected