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