in reply to SOAP object style method dispatching
Besides writing them by hand, you can autogenerate those in a number of ways. One way is using string eval; another could be to mimick what modules such as Class::Accessor do for method generation.sub some_function { my $self = shift; return Some::Other::Package::function( @_ ); }
|
|---|