MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / QueryIntText

Method QueryIntText

examples/ThirdPartyLibs/tinyxml2/tinyxml2.cpp:1704–1716  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1702}
1703
1704XMLError XMLElement::QueryIntText(int* ival) const
1705{
1706 if (FirstChild() && FirstChild()->ToText())
1707 {
1708 const char* t = FirstChild()->Value();
1709 if (XMLUtil::ToInt(t, ival))
1710 {
1711 return XML_SUCCESS;
1712 }
1713 return XML_CAN_NOT_CONVERT_TEXT;
1714 }
1715 return XML_NO_TEXT_NODE;
1716}
1717
1718XMLError XMLElement::QueryUnsignedText(unsigned* uval) const
1719{

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected