MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / NextSiblingElement

Method NextSiblingElement

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:428–438  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

426}
427
428const TiXmlElement* TiXmlNode::NextSiblingElement() const
429{
430 const TiXmlNode* node;
431
432 for (node = NextSibling(); node; node = node->NextSibling())
433 {
434 if (node->ToElement())
435 return node->ToElement();
436 }
437 return 0;
438}
439
440const TiXmlElement* TiXmlNode::NextSiblingElement(const char* _value) const
441{

Callers 1

ChildElementMethod · 0.45

Calls 2

NextSiblingMethod · 0.45
ToElementMethod · 0.45

Tested by

no test coverage detected