Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thanks a bunch,package MyApp::Example::Model; use strict; use base 'Example::Model'; sub new { my $class = shift; return bless Example::Model->new(@_), $class; } sub mymethod1 { ####; } sub mymethod2 { ####; } 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to add functions to an existing module?
by ikegami (Patriarch) on Jun 21, 2007 at 01:00 UTC | |
|
Re: How to add functions to an existing module?
by GrandFather (Saint) on Jun 21, 2007 at 01:18 UTC | |
|
Re: How to add functions to an existing module?
by ysth (Canon) on Jun 21, 2007 at 02:44 UTC |