| 239 | } |
| 240 | |
| 241 | static const char* xmlText(const tinyxml2::XMLElement* node, bool& error) |
| 242 | { |
| 243 | const char* const str = node->GetText(); |
| 244 | if (!str) |
| 245 | error = true; |
| 246 | return str; |
| 247 | } |
| 248 | |
| 249 | static unsigned int xmlTextAsUInt(const tinyxml2::XMLElement* node, bool& error) |
| 250 | { |
no test coverage detected