| 1256 | |
| 1257 | |
| 1258 | const char* XMLElement::GetText() const |
| 1259 | { |
| 1260 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1261 | return FirstChild()->Value(); |
| 1262 | } |
| 1263 | return 0; |
| 1264 | } |
| 1265 | |
| 1266 | |
| 1267 | void XMLElement::SetText( const char* inText ) |
no test coverage detected