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

Method GetText

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:815–827  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

813}
814
815const char* TiXmlElement::GetText() const
816{
817 const TiXmlNode* child = this->FirstChild();
818 if (child)
819 {
820 const TiXmlText* childText = child->ToText();
821 if (childText)
822 {
823 return childText->Value();
824 }
825 }
826 return 0;
827}
828
829TiXmlDocument::TiXmlDocument() : TiXmlNode(TiXmlNode::DOCUMENT)
830{

Callers

nothing calls this directly

Calls 3

FirstChildMethod · 0.45
ToTextMethod · 0.45
ValueMethod · 0.45

Tested by

no test coverage detected