view Lib/IMPL/Object/Clonable.pm @ 365:7c621bb95e53

working on the metadata model
author sergey
date Mon, 02 Dec 2013 02:13:12 +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;