| 775 | |
| 776 | |
| 777 | void TiXmlElement::SetDoubleAttribute( const char * name, double val ) |
| 778 | { |
| 779 | TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); |
| 780 | if ( attrib ) { |
| 781 | attrib->SetDoubleValue( val ); |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | |
| 786 | #ifdef TIXML_USE_STL |