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 | |
9 | KWindowSystemPluginInterface::KWindowSystemPluginInterface(QObject *parent) |
10 | : QObject(parent) |
11 | { |
12 | } |
13 | |
14 | KWindowSystemPluginInterface::~KWindowSystemPluginInterface() |
15 | { |
16 | } |
17 | |
18 | KWindowEffectsPrivate *KWindowSystemPluginInterface::createEffects() |
19 | { |
20 | return nullptr; |
21 | } |
22 | |
23 | KWindowSystemPrivate *KWindowSystemPluginInterface::createWindowSystem() |
24 | { |
25 | return nullptr; |
26 | } |
27 | |
28 | KWindowShadowPrivate *KWindowSystemPluginInterface::createWindowShadow() |
29 | { |
30 | return nullptr; |
31 | } |
32 | |
33 | KWindowShadowTilePrivate *KWindowSystemPluginInterface::createWindowShadowTile() |
34 | { |
35 | return nullptr; |
36 | } |
37 | |
38 | #include "moc_kwindowsystemplugininterface_p.cpp" |
39 |