aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppIbbIq.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-07-21 18:34:27 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2012-07-21 18:34:27 +0200
commit175fb8b883af4edfcfb4ff3dd2c1fb29dfdf3ceb (patch)
treebcb07029ee5318c3413dd9a5b02710591ae90d63 /src/base/QXmppIbbIq.cpp
parent255c1aabcd8d4e881f06ac55eadfc20274936df0 (diff)
downloadqxmpp-175fb8b883af4edfcfb4ff3dd2c1fb29dfdf3ceb.tar.gz
doc fixes
Diffstat (limited to 'src/base/QXmppIbbIq.cpp')
-rw-r--r--src/base/QXmppIbbIq.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/base/QXmppIbbIq.cpp b/src/base/QXmppIbbIq.cpp
index be8cf14d..4c39f8f6 100644
--- a/src/base/QXmppIbbIq.cpp
+++ b/src/base/QXmppIbbIq.cpp
@@ -53,6 +53,7 @@ void QXmppIbbOpenIq::setSid( const QString &sid )
m_sid = sid;
}
+/// \cond
bool QXmppIbbOpenIq::isIbbOpenIq(const QDomElement &element)
{
QDomElement openElement = element.firstChildElement("open");
@@ -74,6 +75,7 @@ void QXmppIbbOpenIq::toXmlElementFromChild(QXmlStreamWriter *writer) const
writer->writeAttribute( "block-size",QString::number(m_block_size) );
writer->writeEndElement();
}
+/// \endcond
QXmppIbbCloseIq::QXmppIbbCloseIq() : QXmppIq(QXmppIq::Set)
{
@@ -90,6 +92,7 @@ void QXmppIbbCloseIq::setSid( const QString &sid )
m_sid = sid;
}
+/// \cond
bool QXmppIbbCloseIq::isIbbCloseIq(const QDomElement &element)
{
QDomElement openElement = element.firstChildElement("close");
@@ -109,6 +112,7 @@ void QXmppIbbCloseIq::toXmlElementFromChild(QXmlStreamWriter *writer) const
writer->writeAttribute( "sid",m_sid);
writer->writeEndElement();
}
+/// \endcond
QXmppIbbDataIq::QXmppIbbDataIq() : QXmppIq( QXmppIq::Set ), m_seq(0)
{
@@ -144,6 +148,7 @@ void QXmppIbbDataIq::setPayload( const QByteArray &data )
m_payload = data;
}
+/// \cond
bool QXmppIbbDataIq::isIbbDataIq(const QDomElement &element)
{
QDomElement dataElement = element.firstChildElement("data");
@@ -167,3 +172,4 @@ void QXmppIbbDataIq::toXmlElementFromChild(QXmlStreamWriter *writer) const
writer->writeCharacters( m_payload.toBase64() );
writer->writeEndElement();
}
+/// \endcond