Mercurial > pub > Impl
view lib/IMPL/Class/Member.pm @ 408:5c80e33f1218 ref20150831
added 'coarsen' function
author | cin |
---|---|
date | Mon, 07 Sep 2015 01:35:25 +0300 |
parents | c6e90e02dd17 |
children |
line wrap: on
line source
package IMPL::Class::Member; use strict; use parent qw(Exporter); our @EXPORT = qw(&public &private &protected &_direct); use IMPL::Const qw(:access); require IMPL::Class::MemberInfo; sub public($) { my $info = shift; $info->{access} = ACCESS_PUBLIC; my $implementor = delete $info->{implementor}; $implementor->Implement($info); } sub private($) { my $info = shift; $info->{access} = ACCESS_PRIVATE; my $implementor = delete $info->{implementor}; $implementor->Implement($info); } sub protected($) { my $info = shift; $info->{access} = ACCESS_PROTECTED; my $implementor = delete $info->{implementor}; $implementor->Implement($info); } sub _direct($) { my $info = shift; $info->{direct} = 1; return $info; } 1;