File indexing completed on 2024-12-08 03:43:51
0001 /* 0002 SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #include "kwindowsystemplugininterface_p.h" 0008 0009 KWindowSystemPluginInterface::KWindowSystemPluginInterface(QObject *parent) 0010 : QObject(parent) 0011 { 0012 } 0013 0014 KWindowSystemPluginInterface::~KWindowSystemPluginInterface() 0015 { 0016 } 0017 0018 KWindowEffectsPrivate *KWindowSystemPluginInterface::createEffects() 0019 { 0020 return nullptr; 0021 } 0022 0023 KWindowSystemPrivate *KWindowSystemPluginInterface::createWindowSystem() 0024 { 0025 return nullptr; 0026 } 0027 0028 KWindowShadowPrivate *KWindowSystemPluginInterface::createWindowShadow() 0029 { 0030 return nullptr; 0031 } 0032 0033 KWindowShadowTilePrivate *KWindowSystemPluginInterface::createWindowShadowTile() 0034 { 0035 return nullptr; 0036 } 0037 0038 #include "moc_kwindowsystemplugininterface_p.cpp"