]>
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 | |
6 | // CVS-ID: $Id$ | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
54c45be0 RD |
10 | /** |
11 | @class wxFilterFSHandler | |
12 | ||
13 | Filter file system handler. | |
14 | */ | |
3507d2d4 RD |
15 | |
16 | class wxFilterFSHandler : public wxFileSystemHandler | |
17 | { | |
18 | public: | |
19 | wxFilterFSHandler(); | |
20 | virtual ~wxFilterFSHandler(); | |
21 | }; | |
22 |