| 462 | |
| 463 | |
| 464 | bool XMLUtil::ToFloat( const char* str, float* value ) |
| 465 | { |
| 466 | if ( TIXML_SSCANF( str, "%f", value ) == 1 ) { |
| 467 | return true; |
| 468 | } |
| 469 | return false; |
| 470 | } |
| 471 | |
| 472 | bool XMLUtil::ToDouble( const char* str, double* value ) |
| 473 | { |
nothing calls this directly
no outgoing calls
no test coverage detected