source: tags/svn.1.5.4/PERL2ARB/ARB.pm

Last change on this file was 2270, checked in by westram, 20 years ago
  • edited stub doc
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 939 bytes
Line 
1package ARB;
2
3use strict;
4use vars qw($VERSION @ISA @EXPORT);
5
6require Exporter;
7require DynaLoader;
8
9@ISA = qw(Exporter DynaLoader);
10# Items to export into callers namespace by default. Note: do not export
11# names by default without a very good reason. Use EXPORT_OK instead.
12# Do not simply export all your public functions/methods/constants.
13@EXPORT = qw(
14
15);
16$VERSION = '0.01';
17
18bootstrap ARB $VERSION;
19
20# Preloaded methods go here.
21
22# Autoload methods go after =cut, and are processed by the autosplit program.
23
241;
25__END__
26# Below is the stub of documentation for your module. You better edit it!
27
28=head1 NAME
29
30ARB - Perl extension for ARB
31
32=head1 SYNOPSIS
33
34  use ARB;
35
36=head1 DESCRIPTION
37
38The ARB perl module provides access to a ARB databases.  You may
39connect to a remote database (e.g. a running instance of ARB_NTREE) or
40open your own database.
41
42=head1 AUTHOR
43
44ARB development, devel@arb-home.de
45
46=head1 SEE ALSO
47
48perl(1).
49
50=cut
Note: See TracBrowser for help on using the repository browser.