You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kwin/autotests/fakeeffectplugin_version.cpp

39 lines
822 B
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <kwineffects.h>
namespace KWin
{
class FakeVersionEffect : public Effect
{
Q_OBJECT
public:
FakeVersionEffect() {}
~FakeVersionEffect() override {}
};
} // namespace
class FakeEffectPluginFactory : public KWin::EffectPluginFactory
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "not_a_valid_version" FILE "fakeeffectplugin_version.json")
Q_INTERFACES(KPluginFactory)
public:
FakeEffectPluginFactory() {}
~FakeEffectPluginFactory() override {}
KWin::Effect *createEffect() const override {
return new KWin::FakeVersionEffect();
}
};
#include "fakeeffectplugin_version.moc"