RE: using Class::Struct in a module

2004-08-05 Thread NYIMI Jose \(BMB\)
-Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Christopher J. Bottaro Sent: Thursday, August 05, 2004 12:35 AM To: [EMAIL PROTECTED] Subject: using Class::Struct in a module package My::Module; use Class::Struct; use strict; use warnings; struct

RE: using Class::Struct in a module

2004-08-05 Thread Christopher J. Bottaro
thank you. i guess when i was saying 'my $s = new FHEAD', it was calling the new() in the current package. changing it to 'my $s = FHEAD-new()' forces it to use FHEAD's new() method. NYIMI Jose (BMB) wrote: -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of