| 488 | } |
| 489 | |
| 490 | bool XMLUtil::ToDouble( const char* str, double* value ) { |
| 491 | if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) { |
| 492 | return true; |
| 493 | } |
| 494 | return false; |
| 495 | } |
| 496 | |
| 497 | |
| 498 | char* XMLDocument::Identify( char* p, XMLNode** node ) { |
nothing calls this directly
no outgoing calls
no test coverage detected