| 1528 | } |
| 1529 | |
| 1530 | TiXmlAttribute* TiXmlAttributeSet::FindOrCreate( const std::string& _name ) |
| 1531 | { |
| 1532 | TiXmlAttribute* attrib = Find( _name ); |
| 1533 | if ( !attrib ) { |
| 1534 | attrib = new TiXmlAttribute(); |
| 1535 | Add( attrib ); |
| 1536 | attrib->SetName( _name ); |
| 1537 | } |
| 1538 | return attrib; |
| 1539 | } |
| 1540 | #endif |
| 1541 | |
| 1542 |
no test coverage detected