line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#########################################################################################
|
2
|
|
|
|
|
|
|
# Package HiPi::Interface::HTBackpackV2
|
3
|
|
|
|
|
|
|
# Description: compatibility
|
4
|
|
|
|
|
|
|
# Copyright : Copyright (c) 2013-2017 Mark Dootson
|
5
|
|
|
|
|
|
|
# License : This is free software; you can redistribute it and/or modify it under
|
6
|
|
|
|
|
|
|
# the same terms as the Perl 5 programming language system itself.
|
7
|
|
|
|
|
|
|
#########################################################################################
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package HiPi::Interface::HTBackpackV2;
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
#########################################################################################
|
12
|
1
|
|
|
1
|
|
1006
|
use strict;
|
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
45
|
|
13
|
1
|
|
|
1
|
|
8
|
use warnings;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
14
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
6
|
use parent qw( HiPi::Interface::HobbyTronicsBackpackV2 );
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = '0.59';
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub new {
|
20
|
0
|
|
|
0
|
0
|
|
my $class = shift;
|
21
|
0
|
|
|
|
|
|
my $self = $class->SUPER::new( @_ );
|
22
|
0
|
|
|
|
|
|
return $self;
|
23
|
|
|
|
|
|
|
}
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1;
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
__END__
|