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 REMOTEDIRNOTIFY_H |
9 | #define REMOTEDIRNOTIFY_H |
10 | |
11 | #include <QObject> |
12 | |
13 | class KDirWatch; |
14 | |
15 | class RemoteDirNotify : public QObject |
16 | { |
17 | Q_OBJECT |
18 | |
19 | public: |
20 | RemoteDirNotify(); |
21 | |
22 | private Q_SLOTS: |
23 | void slotRemoteChanged(); |
24 | |
25 | private: |
26 | KDirWatch *m_dirWatch; |
27 | }; |
28 | |
29 | #endif |
30 |