File Coverage

blib/lib/SDL/RWOps.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package SDL::RWOps;
2 3     3   55099 use strict;
  3         6  
  3         79  
3 3     3   14 use warnings;
  3         6  
  3         89  
4 3     3   16 use vars qw(@ISA @EXPORT @EXPORT_OK);
  3         5  
  3         177  
5             require Exporter;
6             require DynaLoader;
7 3     3   16 use SDL::Constants ':SDL::RWOps';
  3         6  
  3         361  
8             our @ISA = qw(Exporter DynaLoader);
9              
10 3     3   21 use SDL::Internal::Loader;
  3         5  
  3         231  
11             internal_load_dlls(__PACKAGE__);
12              
13             our $VERSION = 2.548;
14              
15             bootstrap SDL::RWOps;
16              
17 3     3   20 use base 'Exporter';
  3         6  
  3         455  
18             our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::RWOps'} };
19             our %EXPORT_TAGS = (
20             all => \@EXPORT,
21             defaults => $SDL::Constants::EXPORT_TAGS{'SDL::RWOps/defaults'}
22             );
23              
24             1;