| 659 | |
| 660 | |
| 661 | int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const |
| 662 | { |
| 663 | const TiXmlAttribute* attrib = attributeSet.Find( name ); |
| 664 | if ( !attrib ) |
| 665 | return TIXML_NO_ATTRIBUTE; |
| 666 | return attrib->QueryIntValue( ival ); |
| 667 | } |
| 668 | |
| 669 | |
| 670 | int TiXmlElement::QueryUnsignedAttribute( const char* name, unsigned* value ) const |
nothing calls this directly
no test coverage detected