| 738 | |
| 739 | |
| 740 | void TiXmlElement::SetAttribute( const char * name, int val ) |
| 741 | { |
| 742 | TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); |
| 743 | if ( attrib ) { |
| 744 | attrib->SetIntValue( val ); |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | |
| 749 | #ifdef TIXML_USE_STL |
no test coverage detected