| 253 | } |
| 254 | |
| 255 | QString berry::XMLMemento::GetTextData() const |
| 256 | { |
| 257 | Poco::XML::Text* textNode = GetTextNode(); |
| 258 | |
| 259 | if (textNode != nullptr) |
| 260 | { |
| 261 | return QString::fromStdString(textNode->getData()); |
| 262 | } |
| 263 | |
| 264 | return EMPTY_STRING; |
| 265 | } |
| 266 | |
| 267 | QList<QString> berry::XMLMemento::GetAttributeKeys() const |
| 268 | { |
no outgoing calls
no test coverage detected