| 1622 | } |
| 1623 | |
| 1624 | const char* XMLElement::GetText() const |
| 1625 | { |
| 1626 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1627 | return FirstChild()->Value(); |
| 1628 | } |
| 1629 | return 0; |
| 1630 | } |
| 1631 | |
| 1632 | |
| 1633 | void XMLElement::SetText( const char* inText ) |
nothing calls this directly
no test coverage detected