view Lib/IMPL/Object/Clonable.pm @ 284:f2a6bc5f3184

+IMPL::Object::InlineFactory: implement object factory as subroutine
author sergey
date Thu, 14 Feb 2013 19:14:02 +0400
parents 4d0e1962161c
children
line wrap: on
line source

package IMPL::Object::Clonable;
use strict;

use IMPL::lang qw(clone);

sub Clone {
     clone($_[0]);
}

1;