| 470 | } |
| 471 | |
| 472 | bool XMLUtil::ToDouble( const char* str, double* value ) |
| 473 | { |
| 474 | if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) { |
| 475 | return true; |
| 476 | } |
| 477 | return false; |
| 478 | } |
| 479 | |
| 480 | |
| 481 | char* XMLDocument::Identify( char* p, XMLNode** node ) |
nothing calls this directly
no outgoing calls
no test coverage detected