| 402 | } |
| 403 | |
| 404 | const TiXmlElement* TiXmlNode::FirstChildElement() const |
| 405 | { |
| 406 | const TiXmlNode* node; |
| 407 | |
| 408 | for (node = FirstChild(); node; node = node->NextSibling()) |
| 409 | { |
| 410 | if (node->ToElement()) |
| 411 | return node->ToElement(); |
| 412 | } |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | const TiXmlElement* TiXmlNode::FirstChildElement(const char* _value) const |
| 417 | { |
no test coverage detected