File Coverage

blib/lib/Geo/Coordinates/VandH/XS.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Geo::Coordinates::VandH::XS;
2              
3 1     1   25378 use 5.006;
  1         4  
  1         48  
4 1     1   7 use strict;
  1         3  
  1         37  
5 1     1   6 use warnings;
  1         3  
  1         701  
6              
7             require Exporter;
8             require DynaLoader;
9              
10             our @ISA = qw(Exporter DynaLoader);
11             our @EXPORT_OK = qw( distance toVH toLatLon degrees radians );
12             our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK );
13             our $VERSION = '0.01';
14              
15             bootstrap Geo::Coordinates::VandH::XS $VERSION;
16              
17             1;
18             __END__