This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
tied() documentation
[perl5.git] / ext / ODBM_File / ODBM_File.pm
index d844c67..a96916b 100644 (file)
@@ -1,10 +1,16 @@
 package ODBM_File;
 
-require TieHash;
+use strict;
+use vars qw($VERSION @ISA);
+
+require Tie::Hash;
 require DynaLoader;
-@ISA = qw(TieHash DynaLoader);
 
-bootstrap ODBM_File;
+@ISA = qw(Tie::Hash DynaLoader);
+
+$VERSION = "1.00";
+
+bootstrap ODBM_File $VERSION;
 
 1;