home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _6cf2fc52bf39089dafed2cba46f7e32a < prev    next >
Text File  |  2004-06-01  |  771b  |  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.