Applied patches for #15184 (wxRichTextAction fix for when the command identifier...
[wxWidgets.git] / interface / wx / fs_arc.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/fs_arc.h
3 // Purpose: Archive file system
4 // Author: Vaclav Slavik, Mike Wetherell
5 // Copyright: (c) 1999 Vaclav Slavik, (c) 2006 Mike Wetherell
6 // CVS-ID: $Id$
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 /**
11 @class wxArchiveFSHandler
12
13 A file system handler for accessing files inside of archives.
14 */
15 class wxArchiveFSHandler : public wxFileSystemHandler
16 {
17 public:
18 wxArchiveFSHandler();
19 virtual ~wxArchiveFSHandler();
20 void Cleanup();
21 };
22
23
24 typedef wxArchiveFSHandler wxZipFSHandler;