in reply to Autocreating Classes
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');
|
|---|