| 482 | |
| 483 | |
| 484 | bool XMLUtil::ToInt( const char* str, int* value ) |
| 485 | { |
| 486 | if ( TIXML_SSCANF( str, "%d", value ) == 1 ) { |
| 487 | return true; |
| 488 | } |
| 489 | return false; |
| 490 | } |
| 491 | |
| 492 | bool XMLUtil::ToUnsigned( const char* str, unsigned *value ) |
| 493 | { |
nothing calls this directly
no outgoing calls
no test coverage detected