File Coverage

blib/lib/Device/Davis.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 Device::Davis;
2              
3             require 5.005_62;
4 1     1   993 use strict;
  1         2  
  1         38  
5 1     1   6 use warnings;
  1         1  
  1         39  
6              
7             require Exporter;
8             require DynaLoader;
9 1     1   928 use AutoLoader qw(AUTOLOAD);
  1         1618  
  1         5  
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 Davis ':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            
22             ) ] );
23              
24             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
25              
26             our @EXPORT = qw(station_open put_string get_char crc_accum put_unsigned
27             );
28             our $VERSION = '1.2.3';
29              
30             bootstrap Device::Davis $VERSION;
31              
32             # Preloaded methods go here.
33              
34             # Autoload methods go after =cut, and are processed by the autosplit program.
35              
36             1;
37             __END__