2011-12-21 06:28:51 +00:00
|
|
|
/*
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2011 Tamas Krutki <ktamasw@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2011-12-21 06:28:51 +00:00
|
|
|
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KPluginFactory>
|
2011-12-21 06:28:51 +00:00
|
|
|
|
|
|
|
#include "module.h"
|
2021-01-05 08:53:04 +00:00
|
|
|
#include "kwinscriptsdata.h"
|
2011-12-21 06:28:51 +00:00
|
|
|
|
|
|
|
K_PLUGIN_FACTORY(KcmKWinScriptsFactory,
|
2021-01-05 08:53:04 +00:00
|
|
|
registerPlugin<Module>();
|
|
|
|
registerPlugin<KWinScriptsData>();
|
|
|
|
)
|
2017-12-18 10:40:35 +00:00
|
|
|
|
|
|
|
#include "main.moc"
|