Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
use 5.010001;
use strict;
our $VERSION = '1.13.0.2'; # TRIAL VERSION
__PACKAGE__->section("BIOS information");
__PACKAGE__->has(
[ 'Vendor', { from => 'Version String', key => 'Version' }, 'Release Date', ],
1
);
sub new {
my $that = shift;
my $proto = ref($that) || $that;
my $self = $that->SUPER::new(@_);
bless( $self, $proto );
return $self;
}
1;