in reply to
Re^3: Don't know how to make a module for this repeating code
in thread Don't know how to make a module for this repeating code
umm... perhaps I can create something like this:
package ExtConstructor;
sub new {
return <<" CODE";
eval 'use parent "parent::classes"';
sub new {
return bless $_[0]->SUPER::new();
}
CODE
}
1;
package Interface::Module;
use ExtConstructor;
my $code = new ExtConstructor;
eval $code; # so that the constructor code created on-the-fly
1;
package main;
use Interface::Module;
my $obj = new Interface::Module;