annotate Lib/IMPL/Object/Clonable.pm @ 171:59e5fcb59d86

Исправления, изменена концепция веб-форм
author sourcer
date Mon, 06 Jun 2011 03:30:36 +0400
parents 76515373dac0
children d920d2b70230
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
171
59e5fcb59d86 Исправления, изменена концепция веб-форм
sourcer
parents: 165
diff changeset
4 use Clone qw(clone);
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
5
165
76515373dac0 Added Class::Template,
wizard
parents: 163
diff changeset
6 sub Clone {
171
59e5fcb59d86 Исправления, изменена концепция веб-форм
sourcer
parents: 165
diff changeset
7 clone($_[0]);
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
8 }
6ce1f052b90a temp commit
wizard
parents:
diff changeset
9
6ce1f052b90a temp commit
wizard
parents:
diff changeset
10 1;