KWindowSystem

kwindowsystemplugininterface.cpp
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"
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:04 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.