| 1575 | } |
| 1576 | |
| 1577 | const char* XMLElement::GetText() const |
| 1578 | { |
| 1579 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1580 | return FirstChild()->Value(); |
| 1581 | } |
| 1582 | return 0; |
| 1583 | } |
| 1584 | |
| 1585 | |
| 1586 | void XMLElement::SetText( const char* inText ) |
no test coverage detected