| 1640 | } |
| 1641 | |
| 1642 | const char* XMLElement::GetText() const |
| 1643 | { |
| 1644 | if (FirstChild() && FirstChild()->ToText()) |
| 1645 | { |
| 1646 | return FirstChild()->Value(); |
| 1647 | } |
| 1648 | return 0; |
| 1649 | } |
| 1650 | |
| 1651 | void XMLElement::SetText(const char* inText) |
| 1652 | { |
no test coverage detected