aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppBitsOfBinaryData.h
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2019-11-16 22:52:49 +0100
committerLNJ <lnj@kaidan.im>2019-12-06 22:26:12 +0100
commit69050deaffe471a603eddc55289c1a3a1e1e7850 (patch)
tree01b1320fd9489275b433c41ae3d2eabe3cca6e45 /src/base/QXmppBitsOfBinaryData.h
parentc470dbdfe053ef0e8d7e196982013f1edf2aaff5 (diff)
downloadqxmpp-69050deaffe471a603eddc55289c1a3a1e1e7850.tar.gz
Implement XEP-0231: Bits of Binary: IQ
This implements parsing and serialization of the BoB IQ from XEP-0231: Bits of Binary in version 1.0.
Diffstat (limited to 'src/base/QXmppBitsOfBinaryData.h')
-rw-r--r--src/base/QXmppBitsOfBinaryData.h78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/base/QXmppBitsOfBinaryData.h b/src/base/QXmppBitsOfBinaryData.h
new file mode 100644
index 00000000..38f5475d
--- /dev/null
+++ b/src/base/QXmppBitsOfBinaryData.h
@@ -0,0 +1,78 @@
+/*
+ * Copyright (C) 2008-2019 The QXmpp developers
+ *
+ * Author:
+ * Linus Jahn
+ *
+ * Source:
+ * https://github.com/qxmpp-project/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ */
+
+#ifndef QXMPPBITSOFBINARYDATA_H
+#define QXMPPBITSOFBINARYDATA_H
+
+#include <QSharedDataPointer>
+
+#include "QXmppGlobal.h"
+
+class QDomElement;
+class QMimeType;
+class QXmlStreamWriter;
+class QXmppBitsOfBinaryDataPrivate;
+class QXmppBitsOfBinaryContentId;
+
+/// \class QXmppBitsOfBinaryData represents a data element for XEP-0231: Bits
+/// of Binary. It can be used as an extension in other stanzas.
+///
+/// \see QXmppBitsOfBinaryIq, QXmppBitsOfBinaryDataList
+///
+/// \since QXmpp 1.2
+
+class QXMPP_EXPORT QXmppBitsOfBinaryData
+{
+public:
+ QXmppBitsOfBinaryData();
+ QXmppBitsOfBinaryData(const QXmppBitsOfBinaryData &);
+ ~QXmppBitsOfBinaryData();
+
+ QXmppBitsOfBinaryData &operator=(const QXmppBitsOfBinaryData &);
+
+ QXmppBitsOfBinaryContentId cid() const;
+ void setCid(const QXmppBitsOfBinaryContentId &cid);
+
+ int maxAge() const;
+ void setMaxAge(int maxAge);
+
+ QMimeType contentType() const;
+ void setContentType(const QMimeType &contentType);
+
+ QByteArray data() const;
+ void setData(const QByteArray &data);
+
+ bool static isBitsOfBinaryData(const QDomElement &element);
+
+ /// \cond
+ void parseElementFromChild(const QDomElement &dataElement);
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const;
+ /// \endcond
+
+ bool operator==(const QXmppBitsOfBinaryData &other) const;
+
+private:
+ QSharedDataPointer<QXmppBitsOfBinaryDataPrivate> d;
+};
+
+#endif // QXMPPBITSOFBINARYDATA_H