diff options
Diffstat (limited to 'source/QXmppMessage.h')
| -rw-r--r-- | source/QXmppMessage.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source/QXmppMessage.h b/source/QXmppMessage.h index 2590e088..c4e2809d 100644 --- a/source/QXmppMessage.h +++ b/source/QXmppMessage.h @@ -56,17 +56,17 @@ public: ~QXmppMessage(); QXmppMessage::Type getType() const; - QString getTypeStr() const; void setType(QXmppMessage::Type); - void setTypeFromStr(const QString&); QXmppMessage::State getState() const; void setState(QXmppMessage::State); QString getBody() const; void setBody(const QString&); + QString getSubject() const; void setSubject(const QString&); + QString getThread() const; void setThread(const QString&); @@ -74,6 +74,9 @@ public: void toXml(QXmlStreamWriter *writer) const; private: + QString getTypeStr() const; + void setTypeFromStr(const QString&); + Type m_type; State m_state; |
