1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| #ifndef EFSW_WATCHERINOTIFY_HPP
| #define EFSW_WATCHERINOTIFY_HPP
|
| #include <efsw/FileWatcherImpl.hpp>
| #include <efsw/FileInfo.hpp>
|
| namespace efsw {
|
| class WatcherInotify : public Watcher
| {
| public:
| WatcherInotify();
|
| WatcherInotify( WatchID id, std::string directory, FileWatchListener * listener, bool recursive, WatcherInotify * parent = NULL );
|
| bool inParentTree( WatcherInotify * parent );
|
| WatcherInotify * Parent;
|
| FileInfo DirInfo;
| };
|
| }
|
| #endif
|
|