Since the only thing you're doing with the created package is setting its inheritance chain in @Package::ISA, you can do that directly:
sub inherit_from_A { my $package_name = shift; no strict 'refs'; @{"${package_name}::ISA"} = qw(A); } # create class B1.. inherit_from_A('B1');
In reply to Re: Autocreating Classes
by Joost
in thread Autocreating Classes
by water
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |