Initial revision
[perl-pqf.git] / PQF.pm
1 package Net::Z3950::PQF;
2
3 use 5.006;
4 use strict;
5 use warnings;
6
7 require Exporter;
8 use AutoLoader qw(AUTOLOAD);
9
10 our @ISA = qw(Exporter);
11
12 # Items to export into callers namespace by default. Note: do not export
13 # names by default without a very good reason. Use EXPORT_OK instead.
14 # Do not simply export all your public functions/methods/constants.
15
16 # This allows declaration       use Net::Z3950::PQF ':all';
17 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18 # will save memory.
19 our %EXPORT_TAGS = ( 'all' => [ qw(
20         
21 ) ] );
22
23 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
24
25 our @EXPORT = qw(
26         
27 );
28
29 our $VERSION = '0.01';
30
31
32 # Preloaded methods go here.
33
34 # Autoload methods go after =cut, and are processed by the autosplit program.
35
36 1;
37 __END__
38 # Below is stub documentation for your module. You'd better edit it!
39
40 =head1 NAME
41
42 Net::Z3950::PQF - Perl extension for blah blah blah
43
44 =head1 SYNOPSIS
45
46   use Net::Z3950::PQF;
47   blah blah blah
48
49 =head1 ABSTRACT
50
51   This should be the abstract for Net::Z3950::PQF.
52   The abstract is used when making PPD (Perl Package Description) files.
53   If you don't want an ABSTRACT you should also edit Makefile.PL to
54   remove the ABSTRACT_FROM option.
55
56 =head1 DESCRIPTION
57
58 Stub documentation for Net::Z3950::PQF, created by h2xs. It looks like the
59 author of the extension was negligent enough to leave the stub
60 unedited.
61
62 Blah blah blah.
63
64 =head2 EXPORT
65
66 None by default.
67
68
69
70 =head1 SEE ALSO
71
72 Mention other useful documentation such as the documentation of
73 related modules or operating system documentation (such as man pages
74 in UNIX), or any relevant external documentation such as RFCs or
75 standards.
76
77 If you have a mailing list set up for your module, mention it here.
78
79 If you have a web site set up for your module, mention it here.
80
81 =head1 AUTHOR
82
83 Mike Taylor, E<lt>mike@localdomainE<gt>
84
85 =head1 COPYRIGHT AND LICENSE
86
87 Copyright 2004 by Mike Taylor
88
89 This library is free software; you can redistribute it and/or modify
90 it under the same terms as Perl itself. 
91
92 =cut