MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / IntValue

Function IntValue

3rdparty/tinyxml2/tinyxml2.h:1164–1168  ·  view source on GitHub ↗

IntValue interprets the attribute as an integer, and returns the value. If the value isn't an integer, 0 will be returned. There is no error checking; use QueryIntValue() if you need error checking. */

Source from the content-addressed store, hash-verified

1162 use QueryIntValue() if you need error checking.
1163 */
1164 int IntValue() const {
1165 int i = 0;
1166 QueryIntValue(&i);
1167 return i;
1168 }
1169
1170 int64_t Int64Value() const {
1171 int64_t i = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected