MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / QueryIntAttribute

Method QueryIntAttribute

engine/source/persistence/tinyXML/tinyxml.cpp:645–651  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

643
644
645int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const
646{
647 const TiXmlAttribute* attrib = attributeSet.Find( name );
648 if ( !attrib )
649 return TIXML_NO_ATTRIBUTE;
650 return attrib->QueryIntValue( ival );
651}
652
653
654int TiXmlElement::QueryUnsignedAttribute( const char* name, unsigned* value ) const

Callers

nothing calls this directly

Calls 2

FindMethod · 0.80
QueryIntValueMethod · 0.80

Tested by

no test coverage detected