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