]>
Commit | Line | Data |
---|---|---|
6b8ef0b3 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/generic/fswatcher.h | |
3 | // Purpose: wxPollingFileSystemWatcher | |
4 | // Author: Bartosz Bekier | |
5 | // Created: 2009-05-26 | |
6b8ef0b3 VZ |
6 | // Copyright: (c) 2009 Bartosz Bekier <bartosz.bekier@gmail.com> |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_FSWATCHER_GENERIC_H_ | |
11 | #define _WX_FSWATCHER_GENERIC_H_ | |
12 | ||
13 | #include "wx/defs.h" | |
14 | ||
15 | #if wxUSE_FSWATCHER | |
16 | ||
17 | class WXDLLIMPEXP_BASE wxPollingFileSystemWatcher : public wxFileSystemWatcherBase | |
18 | { | |
19 | public: | |
20 | ||
21 | }; | |
22 | ||
23 | #endif // wxUSE_FSWATCHER | |
24 | ||
25 | #endif /* _WX_FSWATCHER_GENERIC_H_ */ |