MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / IntValue

Function IntValue

sourcecommon/tinyxml2.h:1050–1054  ·  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

1048 use QueryIntValue() if you need error checking.
1049 */
1050 int IntValue() const {
1051 int i=0;
1052 QueryIntValue( &i );
1053 return i;
1054 }
1055 /// Query as an unsigned integer. See IntValue()
1056 unsigned UnsignedValue() const {
1057 unsigned i=0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected