in reply to Re: How can I avoid creating two instances of the same object
in thread How can I avoid creating two instances of the same object
Keep in mind that Company has gained it's new method by subclassing a parent class. I don't even know if this is possible, but it sure would be nice!use Company; use User; my $dbh = Company->new(); my $client_info = $dbh->client(); my $user_info = $dbh->user();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How can I avoid creating two instances of the same object
by Fletch (Bishop) on Mar 02, 2006 at 13:55 UTC |