File Coverage

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