From 9935bb73743760a8cb3526f9c608f03c733c6191 Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Sat, 21 Jul 2012 17:29:52 +0200 Subject: doc fixes --- src/base/QXmppArchiveIq.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'src/base/QXmppArchiveIq.cpp') 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; -- cgit v1.2.3