| 1575 | } |
| 1576 | |
| 1577 | TiXmlAttribute* TiXmlAttributeSet::FindOrCreate( const std::string& _name ) |
| 1578 | { |
| 1579 | TiXmlAttribute* attrib = Find( _name ); |
| 1580 | if ( !attrib ) { |
| 1581 | attrib = new TiXmlAttribute(); |
| 1582 | Add( attrib ); |
| 1583 | attrib->SetName( _name ); |
| 1584 | } |
| 1585 | return attrib; |
| 1586 | } |
| 1587 | #endif |
| 1588 | |
| 1589 |
no test coverage detected