| 517 | |
| 518 | |
| 519 | bool XMLUtil::ToFloat( const char* str, float* value ) |
| 520 | { |
| 521 | if ( TIXML_SSCANF( str, "%f", value ) == 1 ) { |
| 522 | return true; |
| 523 | } |
| 524 | return false; |
| 525 | } |
| 526 | |
| 527 | bool XMLUtil::ToDouble( const char* str, double* value ) |
| 528 | { |
nothing calls this directly
no outgoing calls
no test coverage detected