db1b8659fd8867e8059467d04d7647c80e0ce0d6
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Record.pm
1 # $Id: Record.pm,v 1.1 2006-06-20 12:28:26 mike Exp $
2
3 package Net::Z3950::IRSpy::Record;
4
5 use 5.008;
6 use strict;
7 use warnings;
8
9 =head1 NAME
10
11 Net::Z3950::IRSpy::Record - record describing a target for IRSpy
12
13 =head1 SYNOPSIS
14
15  ### To follow
16
17 =head1 DESCRIPTION
18
19 I<### To follow>
20
21 =cut
22
23 sub new {
24     my $class = shift();
25     my($target, $zeerex) = @_;
26
27     ### Should compile the ZeeRex record into something useful.
28     return bless {
29         target => $target,
30         zeerex => $zeerex,
31     }, $class;
32 }
33
34
35 =head1 SEE ALSO
36
37 Net::Z3950::IRSpy
38
39 =head1 AUTHOR
40
41 Mike Taylor, E<lt>mike@indexdata.comE<gt>
42
43 =head1 COPYRIGHT AND LICENSE
44
45 Copyright (C) 2006 by Index Data ApS.
46
47 This library is free software; you can redistribute it and/or modify
48 it under the same terms as Perl itself, either Perl version 5.8.7 or,
49 at your option, any later version of Perl 5 you may have available.
50
51 =cut
52
53 1;