mirror of
https://github.com/KDE/krfb
synced 2026-07-01 15:51:18 -07:00
Command used to format: git ls-files | grep -E '\.(cpp|h|hpp|c)$' | xargs clang-format -i --style file
28 lines
599 B
C++
28 lines
599 B
C++
/* This file is part of the KDE project
|
|
SPDX-FileCopyrightText: 2018 Oleg Chernovskiy <kanedias@xaker.ru>
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#ifndef KRFB_FRAMEBUFFER_PW_PWFRAMEBUFFERPLUGIN_H
|
|
#define KRFB_FRAMEBUFFER_PW_PWFRAMEBUFFERPLUGIN_H
|
|
|
|
#include "framebufferplugin.h"
|
|
|
|
class FrameBuffer;
|
|
|
|
class PWFrameBufferPlugin : public FrameBufferPlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PWFrameBufferPlugin(QObject *parent, const QVariantList &args);
|
|
|
|
FrameBuffer *frameBuffer(const QVariantMap &args) override;
|
|
|
|
private:
|
|
Q_DISABLE_COPY(PWFrameBufferPlugin)
|
|
};
|
|
|
|
#endif // Header guard
|