File Coverage

blib/lib/Net/SinFP/DB/OsVersionChildren.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             #
2             # $Id: OsVersionChildren.pm 2236 2015-02-15 17:03:25Z gomor $
3             #
4             package Net::SinFP::DB::OsVersionChildren;
5 1     1   346 use strict;
  1         1  
  1         72  
6 1     1   4 use warnings;
  1         2  
  1         87  
7              
8             require DBIx::SQLite::Simple::Table;
9             our @ISA = qw(DBIx::SQLite::Simple::Table);
10              
11             our @AS = qw(
12             idSignature
13             idOsVersion
14             );
15             __PACKAGE__->cgBuildIndices;
16             __PACKAGE__->cgBuildAccessorsScalar(\@AS);
17              
18             our @Fields = @AS;
19              
20             1;
21              
22             =head1 NAME
23              
24             Net::SinFP::DB::OsVersionChildren - OsVersionChildren database table
25              
26             =head1 DESCRIPTION
27              
28             Go to http://www.gomor.org/sinfp to know more.
29              
30             =cut
31              
32             =head1 AUTHOR
33              
34             Patrice EGomoRE Auffret
35              
36             =head1 COPYRIGHT AND LICENSE
37              
38             Copyright (c) 2005-2015, Patrice EGomoRE Auffret
39              
40             You may distribute this module under the terms of the Artistic license.
41             See LICENSE.Artistic file in the source distribution archive.
42              
43             =cut