| 1184 | } |
| 1185 | |
| 1186 | int TiXmlAttribute::QueryIntValue(int* ival) const |
| 1187 | { |
| 1188 | if (sscanf(value.c_str(), "%d", ival) == 1) |
| 1189 | return TIXML_SUCCESS; |
| 1190 | return TIXML_WRONG_TYPE; |
| 1191 | } |
| 1192 | |
| 1193 | int TiXmlAttribute::QueryDoubleValue(double* dval) const |
| 1194 | { |
no test coverage detected