|
our $VERSION = version->declare( 'v0.40.0' );
use if $^V ge v5.12.0, feature => 'unicode_strings' ;
has 'measurement_system' => (
is => 'ro' ,
isa => HashRef,
init_arg => undef ,
default => sub { {
'001' => 'metric' ,
'LR' => 'US' ,
'US' => 'US' ,
'LR' => 'metric' ,
'MM' => 'metric' ,
'BS' => 'US' ,
'BZ' => 'US' ,
'KY' => 'US' ,
'PR' => 'US' ,
'PW' => 'US' ,
'GB' => 'UK' ,
'MM' => 'UK' ,
} },
);
has 'paper_size' => (
is => 'ro' ,
isa => HashRef,
init_arg => undef ,
default => sub { {
'001' => 'A4' ,
'BZ' => 'US-Letter' ,
'CA' => 'US-Letter' ,
'CL' => 'US-Letter' ,
'CO' => 'US-Letter' ,
'CR' => 'US-Letter' ,
'GT' => 'US-Letter' ,
'MX' => 'US-Letter' ,
'NI' => 'US-Letter' ,
'PA' => 'US-Letter' ,
'PH' => 'US-Letter' ,
'PR' => 'US-Letter' ,
'SV' => 'US-Letter' ,
'US' => 'US-Letter' ,
'VE' => 'US-Letter' ,
} },
);
no Moo::Role;
1;
|