1/*
2 SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#include "kwindowsystemplugininterface_p.h"
8
9KWindowSystemPluginInterface::KWindowSystemPluginInterface(QObject *parent)
10 : QObject(parent)
11{
12}
13
14KWindowSystemPluginInterface::~KWindowSystemPluginInterface()
15{
16}
17
18KWindowEffectsPrivate *KWindowSystemPluginInterface::createEffects()
19{
20 return nullptr;
21}
22
23KWindowSystemPrivate *KWindowSystemPluginInterface::createWindowSystem()
24{
25 return nullptr;
26}
27
28KWindowShadowPrivate *KWindowSystemPluginInterface::createWindowShadow()
29{
30 return nullptr;
31}
32
33KWindowShadowTilePrivate *KWindowSystemPluginInterface::createWindowShadowTile()
34{
35 return nullptr;
36}
37
38#include "moc_kwindowsystemplugininterface_p.cpp"
39

source code of kwindowsystem/src/kwindowsystemplugininterface.cpp