MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / QueryIntText

Method QueryIntText

Source/ThirdParty/tinyxml2/tinyxml2.cpp:1524–1534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1522
1523
1524XMLError XMLElement::QueryIntText( int* ival ) const
1525{
1526 if ( FirstChild() && FirstChild()->ToText() ) {
1527 const char* t = FirstChild()->Value();
1528 if ( XMLUtil::ToInt( t, ival ) ) {
1529 return XML_SUCCESS;
1530 }
1531 return XML_CAN_NOT_CONVERT_TEXT;
1532 }
1533 return XML_NO_TEXT_NODE;
1534}
1535
1536
1537XMLError XMLElement::QueryUnsignedText( unsigned* uval ) const

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected