source: trunk/essentials/dev-lang/perl/jpl/JPL/Class.pm@ 3314

Last change on this file since 3314 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 228 bytes
Line 
1package JPL::Class;
2use JPL::AutoLoader ();
3
4sub DESTROY {}
5
6sub import {
7 my $class = shift;
8 foreach $class (@_) {
9 *{$class . "::AUTOLOAD"} = *JPL::AutoLoader::AUTOLOAD;
10 *{$class . "::DESTROY"} = \&DESTROY;
11 }
12}
131;
Note: See TracBrowser for help on using the repository browser.