view Lib/IMPL/Object/Clonable.pm @ 170:b88b7fe60aa3

refactoring
author sourcer
date Tue, 24 May 2011 01:11:16 +0400
parents 76515373dac0
children 59e5fcb59d86
line wrap: on
line source

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

use Storable qw(dclone);

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

1;