| 735 | |
| 736 | |
| 737 | int TiXmlElement::QueryDoubleAttribute( const char* name, double* dval ) const |
| 738 | { |
| 739 | const TiXmlAttribute* attrib = attributeSet.Find( name ); |
| 740 | if ( !attrib ) |
| 741 | return TIXML_NO_ATTRIBUTE; |
| 742 | return attrib->QueryDoubleValue( dval ); |
| 743 | } |
| 744 | |
| 745 | |
| 746 | #ifdef TIXML_USE_STL |