MCPcopy Create free account
hub / github.com/NanoMichael/MicroTeX / QueryBoolText

Method QueryBoolText

src/xml/tinyxml2.cpp:1294–1303  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1292
1293
1294XMLError XMLElement::QueryBoolText( bool* bval ) const {
1295 if ( FirstChild() && FirstChild()->ToText() ) {
1296 const char* t = FirstChild()->Value();
1297 if ( XMLUtil::ToBool( t, bval ) ) {
1298 return XML_SUCCESS;
1299 }
1300 return XML_CAN_NOT_CONVERT_TEXT;
1301 }
1302 return XML_NO_TEXT_NODE;
1303}
1304
1305
1306XMLError XMLElement::QueryDoubleText( double* dval ) const {

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.80

Tested by

no test coverage detected