| 1 | /* |
| 2 | This file is part of the KDE Project |
| 3 | SPDX-FileCopyrightText: 2004 Kévin Ottens <ervin ipsquad net> |
| 4 | |
| 5 | SPDX-License-Identifier: LGPL-2.0-only |
| 6 | */ |
| 7 | |
| 8 | #include "remotedirnotifymodule.h" |
| 9 | |
| 10 | #include <KPluginFactory> |
| 11 | |
| 12 | K_PLUGIN_CLASS_WITH_JSON(RemoteDirNotifyModule, "remotedirnotify.json" ) |
| 13 | |
| 14 | RemoteDirNotifyModule::RemoteDirNotifyModule(QObject *parent, const QList<QVariant> &) |
| 15 | : KDEDModule(parent) |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | #include "moc_remotedirnotifymodule.cpp" |
| 20 | #include "remotedirnotifymodule.moc" |
| 21 | |