1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/unix/fswatcher_inotify.h
3 // Purpose: wxInotifyFileSystemWatcher
4 // Author: Bartosz Bekier
6 // Copyright: (c) 2009 Bartosz Bekier <bartosz.bekier@gmail.com>
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_FSWATCHER_UNIX_H_
11 #define _WX_FSWATCHER_UNIX_H_
17 class WXDLLIMPEXP_BASE wxInotifyFileSystemWatcher
:
18 public wxFileSystemWatcherBase
21 wxInotifyFileSystemWatcher();
23 wxInotifyFileSystemWatcher(const wxFileName
& path
,
24 int events
= wxFSW_EVENT_ALL
);
26 virtual ~wxInotifyFileSystemWatcher();
28 void OnDirDeleted(const wxString
& path
);
36 #endif /* _WX_FSWATCHER_UNIX_H_ */