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__
|