| 722 | |
| 723 | |
| 724 | void TiXmlElement::SetAttribute( const char * name, int val ) |
| 725 | { |
| 726 | TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); |
| 727 | if ( attrib ) { |
| 728 | attrib->SetIntValue( val ); |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | |
| 733 | #ifdef TIXML_USE_STL |
no test coverage detected