mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
14 lines
323 B
C++
14 lines
323 B
C++
|
|
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
||
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
#include "mobiletaskswitchereffect.h"
|
||
|
|
|
||
|
|
namespace KWin
|
||
|
|
{
|
||
|
|
|
||
|
|
KWIN_EFFECT_FACTORY_SUPPORTED(MobileTaskSwitcherEffect, "metadata.json", return MobileTaskSwitcherEffect::supported();)
|
||
|
|
|
||
|
|
} // namespace KWin
|
||
|
|
|
||
|
|
#include "main.moc"
|