| 1231 | |
| 1232 | |
| 1233 | int TiXmlAttribute::QueryIntValue( int* ival ) const |
| 1234 | { |
| 1235 | if ( TIXML_SSCANF( value.c_str(), "%d", ival ) == 1 ) |
| 1236 | return TIXML_SUCCESS; |
| 1237 | return TIXML_WRONG_TYPE; |
| 1238 | } |
| 1239 | |
| 1240 | int TiXmlAttribute::QueryDoubleValue( double* dval ) const |
| 1241 | { |
no test coverage detected