| 1239 | |
| 1240 | |
| 1241 | int TiXmlAttribute::QueryIntValue( int* ival ) const |
| 1242 | { |
| 1243 | if ( TIXML_SSCANF( value.c_str(), "%d", ival ) == 1 ) |
| 1244 | return TIXML_SUCCESS; |
| 1245 | return TIXML_WRONG_TYPE; |
| 1246 | } |
| 1247 | |
| 1248 | int TiXmlAttribute::QueryDoubleValue( double* dval ) const |
| 1249 | { |
no test coverage detected