annotate Lib/IMPL/Object/Clonable.pm @ 204:d63f9a92d6d4

+IMPL::Config::Include - simple way to include external config *IMPL::Web::Handler::TTView - finished template selecting mechanism (not tested)
author sergey
date Wed, 02 May 2012 17:42:47 +0400
parents 4d0e1962161c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
1 package IMPL::Object::Clonable;
6ce1f052b90a temp commit
wizard
parents:
diff changeset
2 use strict;
6ce1f052b90a temp commit
wizard
parents:
diff changeset
3
174
d920d2b70230 minor changes
sergey
parents: 171
diff changeset
4 use IMPL::lang qw(clone);
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
5
165
76515373dac0 Added Class::Template,
wizard
parents: 163
diff changeset
6 sub Clone {
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
7 clone($_[0]);
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
8 }
6ce1f052b90a temp commit
wizard
parents:
diff changeset
9
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 174
diff changeset
10 1;