1
0
mirror of https://github.com/KDE/krfb synced 2026-07-01 07:41:17 -07:00
Files
krfb/krfb/framebufferplugin.h

32 lines
698 B
C
Raw Normal View History

/* This file is part of the KDE project
2024-08-08 01:08:31 +02:00
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_FRAMEBUFFERPLUGIN_H
#define LIB_KRFB_FRAMEBUFFERPLUGIN_H
#include "krfbprivate_export.h"
#include <QVariantList>
#include <QWidget>
class FrameBuffer;
class KRFBPRIVATE_EXPORT FrameBufferPlugin : public QObject
{
Q_OBJECT
public:
2021-07-09 08:51:05 +02:00
explicit FrameBufferPlugin(QObject *parent, const QVariantList &args);
2018-07-17 14:40:23 +02:00
~FrameBufferPlugin() override;
virtual FrameBuffer *frameBuffer(const QVariantMap &args) = 0;
};
#endif // Header guard