in reply to OO: Building an object of the right type based on a parameter
Here's an example, untested. (See the docs for more.)
package InvoiceCalculatorFactory; use base qw( Class::Factory ); __PACKAGE__->add_factory_type( old_school => 'InvoiceCalculator::OldSchool' ); __PACKAGE__->add_factory_type( new_school => 'InvoiceCalculator::NewSchool' ); __PACKAGE__->add_factory_type( delinquent => 'InvoiceCalculator::Delinquent' );
And then, assuming your client object has a field 'type' or something, you can do:
my $calculator = InvoiceCalculatorFactory->new( $client->type );
Good luck!
Chris
M-x auto-bs-mode
|
|---|