| 661 | |
| 662 | |
| 663 | bool XMLUtil::ToDouble( const char* str, double* value ) |
| 664 | { |
| 665 | if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) { |
| 666 | return true; |
| 667 | } |
| 668 | return false; |
| 669 | } |
| 670 | |
| 671 | |
| 672 | bool XMLUtil::ToInt64(const char* str, int64_t* value) |
nothing calls this directly
no outgoing calls
no test coverage detected