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