At 00:33 -0800 2001.12.12, David Iberri wrote:
>Can anyone point me to some docs relevant to multiple inheritance?
Damian Conway has some good info on it in his book. Also of interest is
his new NEXT module which makes multiple inheritance ... better.
http://use.perl.org/article.pl?sid=
Hi folks,
Can anyone point me to some docs relevant to multiple inheritance?
I have two base classes A and B, then a derived class C that inherits from A
and B. Pretty standard, I think:
package A;
sub new {
my $pkg = shift;
return bless { _key1 => 'val1', _key2 => 'val2' }, $pkg;
}
packa