602
|
1 |
# COPYRIGHT 1996-2000 Graham Barr. All rights reserved.
|
|
2 |
#
|
|
3 |
# This library is free software; you can redistribute it and/or modify
|
|
4 |
# it under the same terms as Perl itself.
|
|
5 |
|
|
6 |
package Net::FTP::E;
|
|
7 |
|
|
8 |
require Net::FTP::I;
|
|
9 |
|
|
10 |
@ISA = qw(Net::FTP::I);
|
|
11 |
$VERSION = "0.01";
|
|
12 |
|
|
13 |
1;
|
|
14 |
__END__
|
|
15 |
|
|
16 |
=head1 COPYRIGHT
|
|
17 |
|
|
18 |
COPYRIGHT
|
|
19 |
|
|
20 |
© 1996-2000 Graham Barr. All rights reserved.
|
|
21 |
|
|
22 |
This library is free software; you can redistribute it and/or modify
|
|
23 |
it under the same terms as Perl itself.
|
|
24 |
|
|
25 |
=cut
|