| 643 | |
| 644 | |
| 645 | int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const |
| 646 | { |
| 647 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 648 | if ( !node ) |
| 649 | return TIXML_NO_ATTRIBUTE; |
| 650 | return node->QueryIntValue( ival ); |
| 651 | } |
| 652 | |
| 653 | |
| 654 | #ifdef TIXML_USE_STL |
no test coverage detected