aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppArchiveIq.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-07-21 17:29:52 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2012-07-21 17:29:52 +0200
commit9935bb73743760a8cb3526f9c608f03c733c6191 (patch)
tree47603a567e608051aea51d5b7cdcf1bf0e87b76f /src/base/QXmppArchiveIq.cpp
parent984c5fc593c2d9c4bf62c104f13073b5caadfd8a (diff)
downloadqxmpp-9935bb73743760a8cb3526f9c608f03c733c6191.tar.gz
doc fixes
Diffstat (limited to 'src/base/QXmppArchiveIq.cpp')
-rw-r--r--src/base/QXmppArchiveIq.cpp32
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;