]>
Commit | Line | Data |
---|---|---|
3507d2d4 RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/fs_filter.h | |
3 | // Purpose: Filter file system handler | |
4 | // Author: Mike Wetherell | |
5 | // Copyright: (c) 2006 Mike Wetherell | |
3507d2d4 RD |
6 | // Licence: wxWindows licence |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
54c45be0 RD |
9 | /** |
10 | @class wxFilterFSHandler | |
11 | ||
12 | Filter file system handler. | |
13 | */ | |
3507d2d4 RD |
14 | |
15 | class wxFilterFSHandler : public wxFileSystemHandler | |
16 | { | |
17 | public: | |
18 | wxFilterFSHandler(); | |
19 | virtual ~wxFilterFSHandler(); | |
20 | }; | |
21 |