File: ENER002.pm

package info (click to toggle)
libhipi-perl 0.93-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 20,048 kB
  • sloc: perl: 471,917; ansic: 22; makefile: 10
file content (28 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#########################################################################################
# Package       HiPi::Interface::ENER002
# Description:  compatibility
# Copyright    : Copyright (c) 2013-2017 Mark Dootson
# License      : This is free software; you can redistribute it and/or modify it under
#                the same terms as the Perl 5 programming language system itself.
#########################################################################################

package HiPi::Interface::ENER002;

#########################################################################################

use strict;
use warnings;

use parent qw( HiPi::Interface::EnergenieSwitch );

our $VERSION = '0.59';

sub new {
    my $class = shift;
    my $self = $class->SUPER::new( @_ );
    return $self;
}

1;

__END__