| 435 | } |
| 436 | |
| 437 | bool XMLUtil::ToUnsigned( const char* str, unsigned *value ) |
| 438 | { |
| 439 | if ( TIXML_SSCANF( str, "%u", value ) == 1 ) { |
| 440 | return true; |
| 441 | } |
| 442 | return false; |
| 443 | } |
| 444 | |
| 445 | bool XMLUtil::ToBool( const char* str, bool* value ) |
| 446 | { |
nothing calls this directly
no outgoing calls
no test coverage detected