| 525 | } |
| 526 | |
| 527 | bool XMLUtil::ToDouble( const char* str, double* value ) |
| 528 | { |
| 529 | if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) { |
| 530 | return true; |
| 531 | } |
| 532 | return false; |
| 533 | } |
| 534 | |
| 535 | |
| 536 | char* XMLDocument::Identify( char* p, XMLNode** node ) |
nothing calls this directly
no outgoing calls
no test coverage detected