Move Net/Z3950/IRSpy/Record.pm to ZOOM/IRSpy/Record.pm
authorMike Taylor <mike@indexdata.com>
Tue, 20 Jun 2006 12:28:26 +0000 (12:28 +0000)
committerMike Taylor <mike@indexdata.com>
Tue, 20 Jun 2006 12:28:26 +0000 (12:28 +0000)
lib/ZOOM/IRSpy/Record.pm [new file with mode: 0644]

diff --git a/lib/ZOOM/IRSpy/Record.pm b/lib/ZOOM/IRSpy/Record.pm
new file mode 100644 (file)
index 0000000..db1b865
--- /dev/null
@@ -0,0 +1,53 @@
+# $Id: Record.pm,v 1.1 2006-06-20 12:28:26 mike Exp $
+
+package Net::Z3950::IRSpy::Record;
+
+use 5.008;
+use strict;
+use warnings;
+
+=head1 NAME
+
+Net::Z3950::IRSpy::Record - record describing a target for IRSpy
+
+=head1 SYNOPSIS
+
+ ### To follow
+
+=head1 DESCRIPTION
+
+I<### To follow>
+
+=cut
+
+sub new {
+    my $class = shift();
+    my($target, $zeerex) = @_;
+
+    ### Should compile the ZeeRex record into something useful.
+    return bless {
+       target => $target,
+       zeerex => $zeerex,
+    }, $class;
+}
+
+
+=head1 SEE ALSO
+
+Net::Z3950::IRSpy
+
+=head1 AUTHOR
+
+Mike Taylor, E<lt>mike@indexdata.comE<gt>
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 2006 by Index Data ApS.
+
+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.7 or,
+at your option, any later version of Perl 5 you may have available.
+
+=cut
+
+1;