| 895 | } |
| 896 | |
| 897 | void TiXmlAttribute::SetIntValue( int _value ) |
| 898 | { |
| 899 | TCHAR buf [64]; |
| 900 | wsprintf (buf, TEXT("%d"), _value); |
| 901 | SetValue (buf); |
| 902 | } |
| 903 | |
| 904 | void TiXmlAttribute::SetDoubleValue( double _value ) |
| 905 | { |
nothing calls this directly
no outgoing calls
no test coverage detected