in reply to Re: how to method Inheritance
in thread how to method Inheritance

Fantastic, thanks for the help

using the base pragma, and removing the require statement worked a treat

package Mailsort; use lib ('G:\Perl Live\OO Packages'); require Exporter; use strict; use Carp; use base qw(Mailsort_scj Filedetails);
however why does base work here where require did not?

thanks

Replies are listed 'Best First'.
Re^3: how to method Inheritance
by afoken (Chancellor) on May 06, 2009 at 18:55 UTC

    RTFM: base (and parent) modify @ISA.

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)