home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / Tree.pm < prev    next >
Encoding:
Perl POD Document  |  2004-06-01  |  771 b   |  40 lines

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