| 575 | |
| 576 | |
| 577 | const char* TiXmlElement::Attribute( const char* name ) const |
| 578 | { |
| 579 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 580 | if ( node ) |
| 581 | return node->Value(); |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | |
| 586 | #ifdef TIXML_USE_STL |
no test coverage detected