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

Method QueryFloatText

Source/ThirdParty/tinyxml2/tinyxml2.cpp:1703–1713  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1701
1702
1703XMLError XMLElement::QueryFloatText( float* fval ) const
1704{
1705 if ( FirstChild() && FirstChild()->ToText() ) {
1706 const char* t = FirstChild()->Value();
1707 if ( XMLUtil::ToFloat( t, fval ) ) {
1708 return XML_SUCCESS;
1709 }
1710 return XML_CAN_NOT_CONVERT_TEXT;
1711 }
1712 return XML_NO_TEXT_NODE;
1713}
1714
1715int XMLElement::IntText(int defaultValue) const
1716{

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected