| 663 | |
| 664 | |
| 665 | int TiXmlElement::QueryDoubleAttribute( const char* name, double* dval ) const |
| 666 | { |
| 667 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 668 | if ( !node ) |
| 669 | return TIXML_NO_ATTRIBUTE; |
| 670 | return node->QueryDoubleValue( dval ); |
| 671 | } |
| 672 | |
| 673 | |
| 674 | #ifdef TIXML_USE_STL |
nothing calls this directly
no test coverage detected