KWin
Loading...
Searching...
No Matches
plugin.cpp
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#include "plugin.h"
8#include "expoarea.h"
9#include "expolayout.h"
10
12{
13 qmlRegisterType<KWin::ExpoArea>(uri, 1, 0, "ExpoArea");
14 qmlRegisterType<ExpoLayout>(uri, 1, 0, "ExpoLayout");
15 qmlRegisterType<ExpoCell>(uri, 1, 0, "ExpoCell");
16}
17
18#include "moc_plugin.cpp"
void registerTypes(const char *uri) override
Definition plugin.cpp:11