| 702 | |
| 703 | |
| 704 | int TiXmlElement::QueryDoubleAttribute( const char* name, double* dval ) const |
| 705 | { |
| 706 | const TiXmlAttribute* attrib = attributeSet.Find( name ); |
| 707 | if ( !attrib ) |
| 708 | return TIXML_NO_ATTRIBUTE; |
| 709 | return attrib->QueryDoubleValue( dval ); |
| 710 | } |
| 711 | |
| 712 | |
| 713 | #ifdef TIXML_USE_STL |
nothing calls this directly
no test coverage detected