blob: 1d8dc4d3b3cc3eefef0da78b361514a66ad56a79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// SPDX-FileCopyrightText: 2010 Jeremy Lainé <jeremy.laine@m4x.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef QXMPPPUBSUBITEM_H
#define QXMPPPUBSUBITEM_H
#include "QXmppGlobal.h"
#include <QSharedDataPointer>
class QDomElement;
class QXmlStreamWriter;
class QXmppElement;
class QXmppPubSubItemPrivate;
#if QXMPP_DEPRECATED_SINCE(1, 5)
class QXMPP_EXPORT QXmppPubSubItem
{
public:
[[deprecated]] QXmppPubSubItem();
QXmppPubSubItem(const QXmppPubSubItem &iq);
~QXmppPubSubItem();
QXmppPubSubItem &operator=(const QXmppPubSubItem &iq);
[[deprecated]] QString id() const;
[[deprecated]] void setId(const QString &id);
[[deprecated]] QXmppElement contents() const;
[[deprecated]] void setContents(const QXmppElement &contents);
[[deprecated]] void parse(const QDomElement &element);
[[deprecated]] void toXml(QXmlStreamWriter *writer) const;
private:
QSharedDataPointer<QXmppPubSubItemPrivate> d;
};
#endif
#endif // QXMPPPUBSUBITEM_H
|