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

Last change on this file was 3181, checked in by bird, 18 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.