Mercurial > pub > Impl
view Lib/IMPL/Object/Clonable.pm @ 351:cfd7570c2af2
working on TTView: created TTView class for rendering models
author | cin |
---|---|
date | Tue, 08 Oct 2013 17:40:35 +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;