| 591 | #endif |
| 592 | |
| 593 | int TiXmlElement::QueryIntAttribute(const char* name, int* ival) const |
| 594 | { |
| 595 | const TiXmlAttribute* node = attributeSet.Find(name); |
| 596 | if (!node) |
| 597 | return TIXML_NO_ATTRIBUTE; |
| 598 | return node->QueryIntValue(ival); |
| 599 | } |
| 600 | |
| 601 | #ifdef TIXML_USE_STL |
| 602 | int TiXmlElement::QueryIntAttribute(const xr_string& name, int* ival) const |
nothing calls this directly
no test coverage detected