Resync with mainline
[p5sagit/p5-mst-13.2.git] / ext / ODBM_File / ODBM_File.pm
CommitLineData
a0d0e21e 1package ODBM_File;
2
96318ac8 3use strict;
96318ac8 4
5require Tie::Hash;
cb50131a 6use XSLoader ();
a0d0e21e 7
cb50131a 8our @ISA = qw(Tie::Hash);
9our $VERSION = "1.02";
c07a80fd 10
146174a9 11XSLoader::load 'ODBM_File', $VERSION;
a0d0e21e 12
131;
14
15__END__
a5f75d66 16
17=head1 NAME
18
19ODBM_File - Tied access to odbm files
20
21=head1 SYNOPSIS
22
23 use ODBM_File;
24
c954a603 25 tie(%h, 'ODBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
a5f75d66 26
27 untie %h;
28
29=head1 DESCRIPTION
30
9fe6733a 31See L<perlfunc/tie>, L<perldbmfilter>
a5f75d66 32
33=cut