| 1570 | } |
| 1571 | |
| 1572 | const char* XMLElement::GetText() const |
| 1573 | { |
| 1574 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1575 | return FirstChild()->Value(); |
| 1576 | } |
| 1577 | return 0; |
| 1578 | } |
| 1579 | |
| 1580 | |
| 1581 | void XMLElement::SetText( const char* inText ) |
no test coverage detected