http://www.perlmonks.org?node_id=996022

citromatik has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

Is it possible to manually alter the inheritance path of an object? I mean, given:

use What::Ever::Class; my $obj = What::Ever::Class->new();

Is it possible at this level to change the SUPER class of the class $obj belongs to? I mean without altering What::Ever::Class module directly

Thanks in advance

citromatik