| 1206 | |
| 1207 | |
| 1208 | int TiXmlAttribute::QueryIntValue( int* ival ) const |
| 1209 | { |
| 1210 | if ( TIXML_SSCANF( value.c_str(), "%d", ival ) == 1 ) |
| 1211 | return TIXML_SUCCESS; |
| 1212 | return TIXML_WRONG_TYPE; |
| 1213 | } |
| 1214 | |
| 1215 | int TiXmlAttribute::QueryDoubleValue( double* dval ) const |
| 1216 | { |
no test coverage detected