| 501 | } |
| 502 | |
| 503 | const char* TiXmlElement::Attribute(const char* name) const |
| 504 | { |
| 505 | const TiXmlAttribute* node = attributeSet.Find(name); |
| 506 | if (node) |
| 507 | return node->Value(); |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | #ifdef TIXML_USE_STL |
| 512 | const xr_string* TiXmlElement::Attribute(const xr_string& name) const |
no test coverage detected