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 | #ifndef REMOTEDIRNOTIFYMODULE_H |
9 | #define REMOTEDIRNOTIFYMODULE_H |
10 | |
11 | #include <KDEDModule> |
12 | |
13 | #include "remotedirnotify.h" |
14 | |
15 | class RemoteDirNotifyModule : public KDEDModule |
16 | { |
17 | Q_OBJECT |
18 | public: |
19 | RemoteDirNotifyModule(QObject *parent, const QList<QVariant> &); |
20 | |
21 | private: |
22 | RemoteDirNotify notifier; |
23 | }; |
24 | |
25 | #endif |
26 |