2012-02-27 18:50:49 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/fs_arc.h
|
|
|
|
// Purpose: Archive file system
|
|
|
|
// Author: Vaclav Slavik, Mike Wetherell
|
|
|
|
// Copyright: (c) 1999 Vaclav Slavik, (c) 2006 Mike Wetherell
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-02-27 18:51:05 -05:00
|
|
|
/**
|
|
|
|
@class wxArchiveFSHandler
|
2012-02-27 18:50:49 -05:00
|
|
|
|
2012-02-27 18:51:05 -05:00
|
|
|
A file system handler for accessing files inside of archives.
|
|
|
|
*/
|
2012-02-27 18:50:49 -05:00
|
|
|
class wxArchiveFSHandler : public wxFileSystemHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxArchiveFSHandler();
|
|
|
|
virtual ~wxArchiveFSHandler();
|
|
|
|
void Cleanup();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef wxArchiveFSHandler wxZipFSHandler;
|