5 #ifndef QXMPPMESSAGEREACTION_H 6 #define QXMPPMESSAGEREACTION_H 8 #include "QXmppGlobal.h" 10 #include <QSharedDataPointer> 13 class QXmlStreamWriter;
14 class QXmppMessageReactionPrivate;
23 QString messageId()
const;
24 void setMessageId(
const QString &messageId);
26 QVector<QString> emojis()
const;
27 void setEmojis(
const QVector<QString> &emojis);
30 void parse(
const QDomElement &element);
31 void toXml(QXmlStreamWriter *writer)
const;
34 static bool isMessageReaction(
const QDomElement &element);
37 QSharedDataPointer<QXmppMessageReactionPrivate> d;
40 #endif // QXMPPMESSAGEREACTION_H The QXmppMessageReaction class represents a reaction to a message in the form of emojis as specified ...
Definition: QXmppMessageReaction.h:16