| 255 | } |
| 256 | |
| 257 | static unsigned int xmlTextAsBool(const tinyxml2::XMLElement* node, bool& error) |
| 258 | { |
| 259 | bool retval = false; |
| 260 | if (node->QueryBoolText(&retval) != tinyxml2::XML_SUCCESS) |
| 261 | error = true; |
| 262 | return retval; |
| 263 | } |
| 264 | |
| 265 | bool Platform::loadFromXmlDocument(const tinyxml2::XMLDocument *doc) |
| 266 | { |
no test coverage detected