annotate Lib/IMPL/Object/Clonable.pm @ 241:f48a1a9f4fa2

+Added ViewResult to allow implementation of the view environment. *TTDocuments now storing creation parameters *TTControls automatically propagating layout and title meta to their attributes +Added UnauthorizaedException web exception *minor fixes
author sergey
date Thu, 18 Oct 2012 04:49:55 +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;