| 518 | |
| 519 | |
| 520 | int TiXmlElement::QueryDoubleAttribute( const TCHAR* name, double* dval ) const |
| 521 | { |
| 522 | TiXmlAttribute* node = attributeSet.Find( name ); |
| 523 | if ( !node ) |
| 524 | return TIXML_NO_ATTRIBUTE; |
| 525 | |
| 526 | return node->QueryDoubleValue( dval ); |
| 527 | } |
| 528 | |
| 529 | |
| 530 | void TiXmlElement::SetAttribute( const TCHAR * name, int val ) |
nothing calls this directly
no test coverage detected