From e6f20b3ef084aee3e97a8a4229f66f0af56a4c93 Mon Sep 17 00:00:00 2001 From: mike Date: Tue, 11 Oct 2005 11:06:54 +0000 Subject: [PATCH] Replace ZOOM.pm by Net/Z3950/ZOOM.pm Functionally identical. --- lib/Net/Z3950/ZOOM.pm | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/ZOOM.pm | 65 ------------------------------------------------- 2 files changed, 65 insertions(+), 65 deletions(-) create mode 100644 lib/Net/Z3950/ZOOM.pm delete mode 100644 lib/ZOOM.pm diff --git a/lib/Net/Z3950/ZOOM.pm b/lib/Net/Z3950/ZOOM.pm new file mode 100644 index 0000000..869f4f9 --- /dev/null +++ b/lib/Net/Z3950/ZOOM.pm @@ -0,0 +1,65 @@ +package Net::Z3950::ZOOM; + +use 5.008; +use strict; +use warnings; +use AutoLoader qw(AUTOLOAD); + +our @ISA = qw(); + +our $VERSION = '0.01'; + +require XSLoader; +XSLoader::load('Net::Z3950::ZOOM', $VERSION); + +# Preloaded methods go here. + +# Autoload methods go after =cut, and are processed by the autosplit program. + +1; +__END__ +# Below is stub documentation for your module. You'd better edit it! + +=head1 NAME + +Net::Z3950::ZOOM - Perl extension for blah blah blah + +=head1 SYNOPSIS + + use Net::Z3950::ZOOM; + blah blah blah + +=head1 DESCRIPTION + +Stub documentation for Net::Z3950::ZOOM, created by h2xs. It looks like the +author of the extension was negligent enough to leave the stub +unedited. + +Blah blah blah. + + +=head1 SEE ALSO + +Mention other useful documentation such as the documentation of +related modules or operating system documentation (such as man pages +in UNIX), or any relevant external documentation such as RFCs or +standards. + +If you have a mailing list set up for your module, mention it here. + +If you have a web site set up for your module, mention it here. + +=head1 AUTHOR + +Mike Taylor, Emike@E + +=head1 COPYRIGHT AND LICENSE + +Copyright (C) 2005 by Mike Taylor + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself, either Perl version 5.8.4 or, +at your option, any later version of Perl 5 you may have available. + + +=cut diff --git a/lib/ZOOM.pm b/lib/ZOOM.pm deleted file mode 100644 index 5d378be..0000000 --- a/lib/ZOOM.pm +++ /dev/null @@ -1,65 +0,0 @@ -package ZOOM; - -use 5.008; -use strict; -use warnings; -use AutoLoader qw(AUTOLOAD); - -our @ISA = qw(); - -our $VERSION = '0.01'; - -require XSLoader; -XSLoader::load('ZOOM', $VERSION); - -# Preloaded methods go here. - -# Autoload methods go after =cut, and are processed by the autosplit program. - -1; -__END__ -# Below is stub documentation for your module. You'd better edit it! - -=head1 NAME - -ZOOM - Perl extension for blah blah blah - -=head1 SYNOPSIS - - use ZOOM; - blah blah blah - -=head1 DESCRIPTION - -Stub documentation for ZOOM, created by h2xs. It looks like the -author of the extension was negligent enough to leave the stub -unedited. - -Blah blah blah. - - -=head1 SEE ALSO - -Mention other useful documentation such as the documentation of -related modules or operating system documentation (such as man pages -in UNIX), or any relevant external documentation such as RFCs or -standards. - -If you have a mailing list set up for your module, mention it here. - -If you have a web site set up for your module, mention it here. - -=head1 AUTHOR - -Mike Taylor, Emike@E - -=head1 COPYRIGHT AND LICENSE - -Copyright (C) 2005 by Mike Taylor - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself, either Perl version 5.8.4 or, -at your option, any later version of Perl 5 you may have available. - - -=cut -- 1.7.10.4