Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5767 alewis 1
package Archive::Zip::Tree;
2
 
3
use strict;
4
use vars qw{$VERSION};
5
 
6
BEGIN {
7
	$VERSION = '1.57';
8
}
9
 
10
use Archive::Zip;
11
 
12
warn(
13
    "Archive::Zip::Tree is deprecated; its methods have been moved into Archive::Zip."
14
) if $^W;
15
 
16
1;
17
 
18
__END__
19
 
20
=head1 NAME
21
 
22
Archive::Zip::Tree - (DEPRECATED) methods for adding/extracting trees using Archive::Zip
23
 
24
=head1 DESCRIPTION
25
 
26
This module is deprecated, because all its methods were moved into the main
27
Archive::Zip module.
28
 
29
It is included in the distribution merely to avoid breaking old code.
30
 
31
See L<Archive::Zip>.
32
 
33
=head1 AUTHOR
34
 
35
Ned Konz, perl@bike-nomad.com
36
 
37
=head1 COPYRIGHT
38
 
39
Copyright (c) 2000-2002 Ned Konz. All rights reserved.  This program is free
40
software; you can redistribute it and/or modify it under the same terms
41
as Perl itself.
42
 
43
=head1 SEE ALSO
44
 
45
L<Archive::Zip>
46
 
47
=cut
48