File Coverage

blib/lib/Alien/WFDB.pm
Criterion Covered Total %
statement 9 12 75.0
branch 0 2 0.0
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 19 63.1


line stmt bran cond sub pod time code
1             package Alien::WFDB;
2             $Alien::WFDB::VERSION = '0.004';
3 1     1   409 use strict;
  1         1  
  1         22  
4 1     1   3 use warnings;
  1         1  
  1         22  
5              
6 1     1   417 use parent 'Alien::Base';
  1         225  
  1         4  
7              
8             sub Inline {
9 0 0   0 0   return unless $_[-1] eq 'C'; # Inline's error message is good
10 0           my $self = __PACKAGE__->new;
11             +{
12 0           LIBS => $self->libs,
13             INC => $self->cflags,
14             AUTO_INCLUDE => '#include "wfdb.h"',
15             };
16             }
17              
18             1;
19             # ABSTRACT: Alien package for the WFDB (WaveForm DataBase) library
20              
21             __END__