| 881 | } |
| 882 | |
| 883 | int TiXmlAttribute::QueryIntValue( int* ival ) const |
| 884 | { |
| 885 | if ( generic_sscanf( value.c_str(), TEXT("%d"), ival ) == 1 ) |
| 886 | return TIXML_SUCCESS; |
| 887 | return TIXML_WRONG_TYPE; |
| 888 | } |
| 889 | |
| 890 | int TiXmlAttribute::QueryDoubleValue( double* dval ) const |
| 891 | { |
no test coverage detected