fs_arc.h 662 B

1234567891011121314151617181920212223
  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. // Licence: wxWindows licence
  7. /////////////////////////////////////////////////////////////////////////////
  8. /**
  9. @class wxArchiveFSHandler
  10. A file system handler for accessing files inside of archives.
  11. */
  12. class wxArchiveFSHandler : public wxFileSystemHandler
  13. {
  14. public:
  15. wxArchiveFSHandler();
  16. virtual ~wxArchiveFSHandler();
  17. void Cleanup();
  18. };
  19. typedef wxArchiveFSHandler wxZipFSHandler;