| 1215 | |
| 1216 | |
| 1217 | const char* XMLElement::GetText() const { |
| 1218 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1219 | return FirstChild()->Value(); |
| 1220 | } |
| 1221 | return 0; |
| 1222 | } |
| 1223 | |
| 1224 | |
| 1225 | void XMLElement::SetText( const char* inText ) { |
nothing calls this directly
no test coverage detected