Re: question, blessing objects, modifying them

2000-01-27 Thread Stas Bekman
Etienne, We all love the OO hype letters, but first it's the offtopic question, second it's the FAQ question. You can hunt for luck at the perl newsgroup or other perl generic list. But save your time and frustration -- read some books, for example 'Object Oriented Perl' by Domian and 'Perl CookB

Re: question, blessing objects, modifying them

2000-01-27 Thread Jeff Beard
Check out "perldoc perltoot" under Class interface. Cheers, Jeff At 01:43 PM 1/27/00 -0800, Etienne Pelaprat wrote: >hi all, > >i'm starting out doing some Object Oriented programming with mod_perl >and I define one object like this: > >sub new { > my $self = shift; > my $type

question, blessing objects, modifying them

2000-01-27 Thread Etienne Pelaprat
hi all, i'm starting out doing some Object Oriented programming with mod_perl and I define one object like this: sub new { my $self = shift; my $type = ref($self) || $self; ## bless our object into the class and return it return bless { first_name => '',