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

Function QueryStringAttribute

examples/ThirdPartyLibs/tinyxml2/tinyxml2.h:1522–1531  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1520
1521 /// See QueryIntAttribute()
1522 XMLError QueryStringAttribute(const char* name, const char** value) const
1523 {
1524 const XMLAttribute* a = FindAttribute(name);
1525 if (!a)
1526 {
1527 return XML_NO_ATTRIBUTE;
1528 }
1529 *value = a->Value();
1530 return XML_SUCCESS;
1531 }
1532
1533 /** Given an attribute name, QueryAttribute() returns
1534 XML_SUCCESS, XML_WRONG_ATTRIBUTE_TYPE if the conversion

Callers

nothing calls this directly

Calls 2

FindAttributeFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected