| 490 | } |
| 491 | |
| 492 | bool XMLUtil::ToUnsigned( const char* str, unsigned *value ) |
| 493 | { |
| 494 | if ( TIXML_SSCANF( str, "%u", value ) == 1 ) { |
| 495 | return true; |
| 496 | } |
| 497 | return false; |
| 498 | } |
| 499 | |
| 500 | bool XMLUtil::ToBool( const char* str, bool* value ) |
| 501 | { |
nothing calls this directly
no outgoing calls
no test coverage detected