Cleaing up for production release
[archive-zip.git] / lib / Archive / Zip / Tree.pm
blobb4953986eb8ffebce9dc64ddb9e4b3ff76191c72
1 package Archive::Zip::Tree;
3 use strict;
4 use vars qw{$VERSION};
5 BEGIN {
6 $VERSION = '1.28';
9 use Archive::Zip;
11 warn(
12 "Archive::Zip::Tree is deprecated; its methods have been moved into Archive::Zip."
13 ) if $^W;
17 __END__
19 =head1 NAME
21 Archive::Zip::Tree - (DEPRECATED) methods for adding/extracting trees using Archive::Zip
23 =head1 SYNOPSIS
25 =head1 DESCRIPTION
27 This module is deprecated, because all its methods were moved into the main
28 Archive::Zip module.
30 It is included in the distribution merely to avoid breaking old code.
32 See L<Archive::Zip>.
34 =head1 AUTHOR
36 Ned Konz, perl@bike-nomad.com
38 =head1 COPYRIGHT
40 Copyright (c) 2000-2002 Ned Konz. All rights reserved. This program is free
41 software; you can redistribute it and/or modify it under the same terms
42 as Perl itself.
44 =head1 SEE ALSO
46 L<Archive::Zip>
48 =cut