File indexing completed on 2024-05-19 03:58:11

0001 /*
0002     This file is part of the KDE Project
0003     SPDX-FileCopyrightText: 2004 Kévin Ottens <ervin ipsquad net>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only
0006 */
0007 
0008 #ifndef REMOTEDIRNOTIFYMODULE_H
0009 #define REMOTEDIRNOTIFYMODULE_H
0010 
0011 #include <KDEDModule>
0012 
0013 #include "remotedirnotify.h"
0014 
0015 class RemoteDirNotifyModule : public KDEDModule
0016 {
0017     Q_OBJECT
0018 public:
0019     RemoteDirNotifyModule(QObject *parent, const QList<QVariant> &);
0020 
0021 private:
0022     RemoteDirNotify notifier;
0023 };
0024 
0025 #endif