# # (c) Jan Gehring # # # this is a simple helper class for the get() function package Rex::Value; use v5.12.5; use warnings; our $VERSION = '1.16.0'; # VERSION sub new { my $that = shift; my $proto = ref($that) || $that; my $self = {@_}; bless( $self, $proto ); return $self; } sub value { my ($self) = @_; return $self->{value}; } 1;