view Lib/IMPL/Object/Clonable.pm @ 339:97628101b765

refactoring: application now holds a security object factory rather than a security object
author cin
date Wed, 19 Jun 2013 03:25:44 +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;