File Coverage

lib/SDL2/MessageBoxButtonData.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package SDL2::MessageBoxButtonData {
2 2     2   14 use SDL2::Utils;
  2         5  
  2         14  
3             has
4             flags => 'uint32',
5             buttonid => 'int',
6             text => 'opaque'; # 'string';
7              
8             =encoding utf-8
9              
10             =head1 NAME
11              
12             SDL2::MessageBoxButtonData - Individual button data
13              
14             =head1 SYNOPSIS
15              
16             use SDL2 qw[:all];
17             # TODO: I need to whip up a quick example
18              
19             =head1 DESCRIPTION
20              
21              
22             =head1 Fields
23              
24             =over
25              
26             =item C - L<< C|SDL2::FFI/C<:messageBoxButtonFlags> >>
27              
28             =item C - User defined button id (value returned via L<< C|SDL2::FFI/C >>)
29              
30             =item C - The UTF-8 button text
31              
32             =back
33              
34             =head1 AUTHOR
35              
36             Sanko Robinson Esanko@cpan.orgE
37              
38             =begin stopwords
39              
40              
41             =end stopwords
42              
43             =cut
44              
45             };
46             1;