| 718 | |
| 719 | |
| 720 | int TiXmlElement::QueryDoubleAttribute( const char* name, double* dval ) const |
| 721 | { |
| 722 | const TiXmlAttribute* attrib = attributeSet.Find( name ); |
| 723 | if ( !attrib ) |
| 724 | return TIXML_NO_ATTRIBUTE; |
| 725 | return attrib->QueryDoubleValue( dval ); |
| 726 | } |
| 727 | |
| 728 | |
| 729 | #ifdef TIXML_USE_STL |
nothing calls this directly
no test coverage detected