Re: [MacPerl-AnyPerl] Re: Multiple Inheritance

2001-12-12 Thread David Iberri
Randal L. Schwartz wrote: >> "David" == David Iberri <[EMAIL PROTECTED]> writes: > > David> Can anyone point me to some docs relevant to multiple inheritance? > > David> I have two base classes A and B, then a derived class C that > David> inherits from A and B. Pretty standard, I think: >

[MacPerl-AnyPerl] Re: Multiple Inheritance

2001-12-12 Thread Randal L. Schwartz
> "David" == David Iberri <[EMAIL PROTECTED]> writes: David> Can anyone point me to some docs relevant to multiple inheritance? David> I have two base classes A and B, then a derived class C that David> inherits from A and B. Pretty standard, I think: No. Not pretty standard. Extremely un

Re: [MacPerl-AnyPerl] Multiple Inheritance

2001-12-12 Thread Chris Nandor
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=

[MacPerl-AnyPerl] Multiple Inheritance

2001-12-12 Thread David Iberri
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