File indexing completed on 2024-06-09 05:26:04

0001 /*
0002     SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "plugin.h"
0008 #include "expoarea.h"
0009 #include "expolayout.h"
0010 
0011 void EffectKitExtensionPlugin::registerTypes(const char *uri)
0012 {
0013     qmlRegisterType<KWin::ExpoArea>(uri, 1, 0, "ExpoArea");
0014     qmlRegisterType<ExpoLayout>(uri, 1, 0, "ExpoLayout");
0015     qmlRegisterType<ExpoCell>(uri, 1, 0, "ExpoCell");
0016 }
0017 
0018 #include "moc_plugin.cpp"