MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / GetText

Method GetText

Libraries/tinyxml/tinyxml.cpp:917–927  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

915
916
917const char* TiXmlElement::GetText() const
918{
919 const TiXmlNode* child = this->FirstChild();
920 if ( child ) {
921 const TiXmlText* childText = child->ToText();
922 if ( childText ) {
923 return childText->Value();
924 }
925 }
926 return 0;
927}
928
929
930TiXmlDocument::TiXmlDocument() : TiXmlNode( TiXmlNode::TINYXML_DOCUMENT )

Callers 15

LoadFromAbsMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
getNodeValueMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45

Calls 3

FirstChildMethod · 0.45
ToTextMethod · 0.45
ValueMethod · 0.45

Tested by 1

mainFunction · 0.36