Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / blib / lib / Wx / FS.pm
1 #############################################################################
2 ## Name:        ext/filesys/lib/Wx/FS.pm
3 ## Purpose:     Wx::FS ( pulls in all Wx::FileSystem stuff )
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     28/04/2001
7 ## RCS-ID:      $Id: FS.pm 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2001-2002, 2004, 2006 Mattia Barbon
9 ## Licence:     This program is free software; you can redistribute it and/or
10 ##              modify it under the same terms as Perl itself
11 #############################################################################
12
13 package Wx::FS;
14
15 use Wx;
16 use strict;
17
18 use vars qw($VERSION);
19
20 $VERSION = '0.01';
21
22 Wx::load_dll( 'net' );
23 Wx::wx_boot( 'Wx::FS', $VERSION );
24
25 #
26 # properly setup inheritance tree
27 #
28
29 no strict;
30
31 package Wx::FileSystemHandler;
32 package Wx::InternetFSHandler;  @ISA = qw(Wx::FileSystemHandler);
33 package Wx::PlFileSystemHandler; @ISA = qw(Wx::FileSystemHandler);
34 package Wx::PlFSFile;           @ISA = qw(Wx::FSFile);
35 package Wx::ArchiveFSHandler;   @ISA = qw(Wx::FileSystemHandler);
36 package Wx::ZipFSHandler;
37
38 @ISA = Wx::wxVERSION() < 2.007002 ? qw(Wx::FileSystemHandler) :
39                                     qw(Wx::ArchiveFSHandler);
40
41 use strict;
42
43 1;
44
45 # Local variables: #
46 # mode: cperl #
47 # End: #
48