| 508 | |
| 509 | |
| 510 | int TiXmlElement::QueryIntAttribute( const TCHAR* name, int* ival ) const |
| 511 | { |
| 512 | TiXmlAttribute* node = attributeSet.Find( name ); |
| 513 | if ( !node ) |
| 514 | return TIXML_NO_ATTRIBUTE; |
| 515 | |
| 516 | return node->QueryIntValue( ival ); |
| 517 | } |
| 518 | |
| 519 | |
| 520 | int TiXmlElement::QueryDoubleAttribute( const TCHAR* name, double* dval ) const |
nothing calls this directly
no test coverage detected