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 REMOTEDIRNOTIFY_H
0009 #define REMOTEDIRNOTIFY_H
0010 
0011 #include <QObject>
0012 
0013 class KDirWatch;
0014 
0015 class RemoteDirNotify : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     RemoteDirNotify();
0021 
0022 private Q_SLOTS:
0023     void slotRemoteChanged();
0024 
0025 private:
0026     KDirWatch *m_dirWatch;
0027 };
0028 
0029 #endif