view Lib/IMPL/Object/Clonable.pm @ 310:0a9d51cf6dfd

*TTView: refactoring, document supports custom classes, layouts are become controls
author sergey
date Fri, 19 Apr 2013 16:39:01 +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;