view Lib/IMPL/Object/Clonable.pm @ 198:2ffe6f661605

Implemented IMPL::Web::Handler::RestController fixes in IMPL::Serialization completed IMPL::Web::Application::RestResource added IMPL::Web::Handler::JSONView added IMPL::Web::RestContract
author cin
date Fri, 20 Apr 2012 16:06:36 +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;