diff options
Diffstat (limited to 'source/QXmppElement.h')
| -rw-r--r-- | source/QXmppElement.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/QXmppElement.h b/source/QXmppElement.h index 416487cb..d684ddd3 100644 --- a/source/QXmppElement.h +++ b/source/QXmppElement.h @@ -47,6 +47,9 @@ public: QString tagName() const; void setTagName(const QString &type); + QString value() const; + void setValue(const QString &text); + bool isNull() const; void toXml(QXmlStreamWriter *writer) const; @@ -54,6 +57,7 @@ private: QMap<QString, QString> m_attributes; QList<QXmppElement> m_children; QString m_tagName; + QString m_value; }; #endif |
