| 676 | |
| 677 | |
| 678 | int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const |
| 679 | { |
| 680 | const TiXmlAttribute* attrib = attributeSet.Find( name ); |
| 681 | if ( !attrib ) |
| 682 | return TIXML_NO_ATTRIBUTE; |
| 683 | return attrib->QueryIntValue( ival ); |
| 684 | } |
| 685 | |
| 686 | |
| 687 | int TiXmlElement::QueryUnsignedAttribute( const char* name, unsigned* value ) const |