Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mirall/folderwatcher.h')
-rw-r--r--src/mirall/folderwatcher.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mirall/folderwatcher.h b/src/mirall/folderwatcher.h
index 830cfabf5..9f7e3c0e7 100644
--- a/src/mirall/folderwatcher.h
+++ b/src/mirall/folderwatcher.h
@@ -7,9 +7,6 @@
#include <QString>
#include <QMutex>
-#include "mirall/inotify.h"
-
-class QFileSystemWatcher;
class INotify;
namespace Mirall {
@@ -20,13 +17,14 @@ Q_OBJECT
public:
FolderWatcher(const QString &path, QObject *parent = 0L);
~FolderWatcher();
+
+ QStringList folders() const;
+
signals:
void folderChanged(const QString &path);
protected slots:
- //void slotDirectoryChanged(const QString &path);
void slotDirectoryChanged(int mask, const QString &path);
private:
- QFileSystemWatcher *_watcher;
QMutex _mutex;
INotify *_inotify;
};