| 427 | |
| 428 | |
| 429 | bool XMLUtil::ToInt( const char* str, int* value ) |
| 430 | { |
| 431 | if ( TIXML_SSCANF( str, "%d", value ) == 1 ) { |
| 432 | return true; |
| 433 | } |
| 434 | return false; |
| 435 | } |
| 436 | |
| 437 | bool XMLUtil::ToUnsigned( const char* str, unsigned *value ) |
| 438 | { |
nothing calls this directly
no outgoing calls
no test coverage detected