| 677 | |
| 678 | |
| 679 | int TiXmlElement::QueryDoubleAttribute( const char* name, double* dval ) const |
| 680 | { |
| 681 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 682 | if ( !node ) |
| 683 | return TIXML_NO_ATTRIBUTE; |
| 684 | return node->QueryDoubleValue( dval ); |
| 685 | } |
| 686 | |
| 687 | |
| 688 | #ifdef TIXML_USE_STL |
nothing calls this directly
no test coverage detected