| 609 | #endif |
| 610 | |
| 611 | int TiXmlElement::QueryDoubleAttribute(const char* name, double* dval) const |
| 612 | { |
| 613 | const TiXmlAttribute* node = attributeSet.Find(name); |
| 614 | if (!node) |
| 615 | return TIXML_NO_ATTRIBUTE; |
| 616 | return node->QueryDoubleValue(dval); |
| 617 | } |
| 618 | |
| 619 | #ifdef TIXML_USE_STL |
| 620 | int TiXmlElement::QueryDoubleAttribute(const xr_string& name, double* dval) const |
nothing calls this directly
no test coverage detected