blob: 153a20dd2ea7d0457438f97f1696f517b00eca5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// SPDX-FileCopyrightText: 2022 Linus Jahn <lnj@kaidan.im>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef QXMPPPUBSUBEVENTHANDLER_H
#define QXMPPPUBSUBEVENTHANDLER_H
#include "QXmppExtension.h"
class QDomElement;
class QXmppPubSubManager;
// Documented in QXmppPubSubManager.cpp.
class QXMPP_EXPORT QXmppPubSubEventHandler : public QXmppExtension
{
public:
virtual bool handlePubSubEvent(const QDomElement &element, const QString &pubSubService, const QString &nodeName) = 0;
};
#endif // QXMPPPUBSUBEVENTHANDLER_H
|