aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty/efsw/WatcherInotify.hpp
blob: ec55ed0e73e30c1de2ff3028982c95c8b4ba474a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef EFSW_WATCHERINOTIFY_HPP
#define EFSW_WATCHERINOTIFY_HPP

#include <efsw/FileInfo.hpp>
#include <efsw/FileWatcherImpl.hpp>

namespace efsw {

class WatcherInotify : public Watcher {
  public:
	WatcherInotify();

	bool inParentTree( WatcherInotify* parent );

	WatcherInotify* Parent;
	WatchID InotifyID;

	FileInfo DirInfo;
	bool syntheticEvents{ false };
};

} // namespace efsw

#endif