| 657 | |
| 658 | |
| 659 | int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const |
| 660 | { |
| 661 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 662 | if ( !node ) |
| 663 | return TIXML_NO_ATTRIBUTE; |
| 664 | return node->QueryIntValue( ival ); |
| 665 | } |
| 666 | |
| 667 | |
| 668 | #ifdef TIXML_USE_STL |
nothing calls this directly
no test coverage detected