/* This file is part of the KDE Project SPDX-FileCopyrightText: 2004 Kévin Ottens SPDX-License-Identifier: LGPL-2.0-only */ #ifndef REMOTEDIRNOTIFYMODULE_H #define REMOTEDIRNOTIFYMODULE_H #include #include "remotedirnotify.h" class RemoteDirNotifyModule : public KDEDModule { Q_OBJECT public: RemoteDirNotifyModule(QObject *parent, const QList &); private: RemoteDirNotify notifier; }; #endif