| 457 | } |
| 458 | |
| 459 | bool XMLUtil::ToUnsigned( const char* str, unsigned *value ) { |
| 460 | if ( TIXML_SSCANF( str, "%u", value ) == 1 ) { |
| 461 | return true; |
| 462 | } |
| 463 | return false; |
| 464 | } |
| 465 | |
| 466 | bool XMLUtil::ToBool( const char* str, bool* value ) { |
| 467 | int ival = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected