20 lines
453 B
C++
20 lines
453 B
C++
|
/*
|
||
|
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#include "startupfeedback.h"
|
||
|
|
||
|
namespace KWin
|
||
|
{
|
||
|
|
||
|
KWIN_EFFECT_FACTORY_SUPPORTED(StartupFeedbackEffectFactory,
|
||
|
StartupFeedbackEffect,
|
||
|
"metadata.json",
|
||
|
return StartupFeedbackEffect::supported();)
|
||
|
|
||
|
} // namespace KWin
|
||
|
|
||
|
#include "main.moc"
|