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