MCPcopy Create free account
hub / github.com/MediaArea/MediaInfoLib / QueryIntText

Method QueryIntText

Source/ThirdParty/tinyxml2/tinyxml2.cpp:1638–1648  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1636
1637
1638XMLError XMLElement::QueryIntText( int* ival ) const
1639{
1640 if ( FirstChild() && FirstChild()->ToText() ) {
1641 const char* t = FirstChild()->Value();
1642 if ( XMLUtil::ToInt( t, ival ) ) {
1643 return XML_SUCCESS;
1644 }
1645 return XML_CAN_NOT_CONVERT_TEXT;
1646 }
1647 return XML_NO_TEXT_NODE;
1648}
1649
1650
1651XMLError XMLElement::QueryUnsignedText( unsigned* uval ) const

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected