MCPcopy Create free account
hub / github.com/crossuo/crossuo / QueryDoubleText

Method QueryDoubleText

external/tinyxml2.cpp:1803–1813  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1801
1802
1803XMLError XMLElement::QueryDoubleText( double* dval ) const
1804{
1805 if ( FirstChild() && FirstChild()->ToText() ) {
1806 const char* t = FirstChild()->Value();
1807 if ( XMLUtil::ToDouble( t, dval ) ) {
1808 return XML_SUCCESS;
1809 }
1810 return XML_CAN_NOT_CONVERT_TEXT;
1811 }
1812 return XML_NO_TEXT_NODE;
1813}
1814
1815
1816XMLError XMLElement::QueryFloatText( float* fval ) const

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected