http://qs1969.pair.com?node_id=56447


in reply to OOP related, using methods in another object without inheriting them.

The most obvious problem I can see is:
my $ref = new Lady_TM("$self{'access_log_path'}");
needs to be:
my $ref = new Lady::Lady_TM("$self{'access_log_path'}");

Replies are listed 'Best First'.
Re: Re: OOP related, using methods in another object without inheriting them.
by Steeeeeve (Initiate) on Feb 05, 2001 at 21:53 UTC
    YES! Thank you so much. I made some changes in working code and it died on me. Its working again. I'm on the road to creating packages in the proper manner. That will of course be relected by changes in my posts. Thanks. -Steeeeeve