| 1324 | |
| 1325 | |
| 1326 | const char* XMLElement::GetText() const |
| 1327 | { |
| 1328 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1329 | return FirstChild()->Value(); |
| 1330 | } |
| 1331 | return 0; |
| 1332 | } |
| 1333 | |
| 1334 | |
| 1335 | void XMLElement::SetText( const char* inText ) |
no test coverage detected