File Coverage

blib/lib/Digest/Elf.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Digest::Elf;
2              
3 1     1   6369 use 5.006;
  1         3  
  1         41  
4 1     1   5 use strict;
  1         2  
  1         33  
5 1     1   5 use warnings;
  1         2  
  1         39  
6 1     1   5 use vars qw( $VERSION );
  1         1  
  1         199  
7              
8             require Exporter;
9             require DynaLoader;
10              
11             our @ISA = qw(Exporter DynaLoader);
12              
13             # Items to export into callers namespace by default. Note: do not export
14             # names by default without a very good reason. Use EXPORT_OK instead.
15             # Do not simply export all your public functions/methods/constants.
16              
17             # This allows declaration use Digest::Elf ':all';
18             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
19             # will save memory.
20             our %EXPORT_TAGS = ( 'all' => [ qw(
21             elf
22             ) ] );
23              
24             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
25              
26             our @EXPORT = qw(
27            
28             );
29              
30             $VERSION = sprintf( "%s", q{$Id: Elf.pm,v 1.4 2003/06/27 04:18:47 steve Exp $} =~ /(\d+\.\d+)/ );
31              
32             bootstrap Digest::Elf $VERSION;
33              
34             # Preloaded methods go here.
35              
36             1;
37             __END__