mirror of
https://github.com/KDE/krfb
synced 2026-07-01 07:31:16 -07:00
30 lines
649 B
C++
30 lines
649 B
C++
/* This file is part of the KDE project
|
|
SPDX-FileCopyrightText: 2009 Collabora Ltd <info@collabora.co.uk>
|
|
SPDX-FileContributor: George Goldberg <george.goldberg@collabora.co.uk>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef LIB_KRFB_EVENTSPLUGIN_H
|
|
#define LIB_KRFB_EVENTSPLUGIN_H
|
|
|
|
#include "krfbprivate_export.h"
|
|
|
|
#include <QtCore/QVariantList>
|
|
#include <QWidget>
|
|
|
|
class EventHandler;
|
|
|
|
class KRFBPRIVATE_EXPORT EventsPlugin : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
EventsPlugin(QObject *parent, const QVariantList &args);
|
|
~EventsPlugin() override;
|
|
|
|
virtual EventHandler *eventHandler() = 0;
|
|
};
|
|
|
|
#endif // Header guard
|
|
|