Re: [Perl-unix-users] Perl confusion

2003-08-14 Thread Jon Earle
Just wanted to say thank you to everyone who reponded to my query of 22, Jul, regarding perl objects. Your explanations and pointers to the relevant manpages helped immensely. Cheers! Jon -- Jon Earle SAVE FARSCAPE http://www.savefarscape.com/ Vegetarian - an old Indian word meaning 'lousy hu

Re: [Perl-unix-users] Perl confusion

2003-07-22 Thread $Bill Luebkert
Jon Earle wrote: > Hello, > > I'm a bit confused over something related to perl objects. I've > included some snippets for reference, which are located below (I'll keep > the relevant discussion here for clarity). > > A new QueuedMessage object is created with 3 parameters passed to the > const

Antwort: [Perl-unix-users] Perl confusion

2003-07-22 Thread Georg . Mavridis
Hello John, The point you are probably missing is that $queued_message = new QueuedMessage($source_dir_name, $source_id, $data_dir_name); is just another way of writing $queued_message = QueuedMessage::new('QueuedMessage',

[Perl-unix-users] Perl confusion

2003-07-22 Thread Jon Earle
Hello, I'm a bit confused over something related to perl objects. I've included some snippets for reference, which are located below (I'll keep the relevant discussion here for clarity). A new QueuedMessage object is created with 3 parameters passed to the constructor. The constructor removes t