diff options
Diffstat (limited to 'src/base/QXmppArchiveIq.cpp')
| -rw-r--r-- | src/base/QXmppArchiveIq.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/base/QXmppArchiveIq.cpp b/src/base/QXmppArchiveIq.cpp index e162a146..bfc7ba05 100644 --- a/src/base/QXmppArchiveIq.cpp +++ b/src/base/QXmppArchiveIq.cpp @@ -235,11 +235,19 @@ void QXmppArchiveChatIq::setChat(const QXmppArchiveChat &chat) m_chat = chat; } +/// Returns the result set management reply. +/// +/// This is used for paging through messages. + QXmppResultSetReply QXmppArchiveChatIq::resultSetReply() const { return m_rsmReply; } +/// Sets the result set management reply. +/// +/// This is used for paging through messages. + void QXmppArchiveChatIq::setResultSetReply(const QXmppResultSetReply& rsm) { m_rsmReply = rsm; @@ -336,21 +344,37 @@ void QXmppArchiveListIq::setEnd(const QDateTime &end) m_end = end; } +/// Returns the result set management query. +/// +/// This is used for paging through conversations. + QXmppResultSetQuery QXmppArchiveListIq::resultSetQuery() const { return m_rsmQuery; } +/// Sets the result set management query. +/// +/// This is used for paging through conversations. + void QXmppArchiveListIq::setResultSetQuery(const QXmppResultSetQuery& rsm) { m_rsmQuery = rsm; } +/// Returns the result set management reply. +/// +/// This is used for paging through conversations. + QXmppResultSetReply QXmppArchiveListIq::resultSetReply() const { return m_rsmReply; } +/// Sets the result set management reply. +/// +/// This is used for paging through conversations. + void QXmppArchiveListIq::setResultSetReply(const QXmppResultSetReply& rsm) { m_rsmReply = rsm; @@ -540,11 +564,19 @@ void QXmppArchiveRetrieveIq::setWith(const QString &with) m_with = with; } +/// Returns the result set management query. +/// +/// This is used for paging through messages. + QXmppResultSetQuery QXmppArchiveRetrieveIq::resultSetQuery() const { return m_rsmQuery; } +/// Sets the result set management query. +/// +/// This is used for paging through messages. + void QXmppArchiveRetrieveIq::setResultSetQuery(const QXmppResultSetQuery& rsm) { m_rsmQuery = rsm; |
