| 1454 | |
| 1455 | |
| 1456 | const char* XMLElement::GetText() const |
| 1457 | { |
| 1458 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1459 | return FirstChild()->Value(); |
| 1460 | } |
| 1461 | return 0; |
| 1462 | } |
| 1463 | |
| 1464 | |
| 1465 | void XMLElement::SetText( const char* inText ) |
nothing calls this directly
no test coverage detected