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