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

source code of kio/src/kioworkers/remote/kdedmodule/remotedirnotify.h