DesignPattern::Factory::ConcreteProduct - a participant in the Perl implementation of the Factory Method.


DesignPattern-Factory documentation Contained in the DesignPattern-Factory distribution.

Index


Code Index:

NAME

Top

DesignPattern::Factory::ConcreteProduct - a participant in the Perl implementation of the Factory Method.

DESCRIPTION

Top

Implements the DesignPattern::Factory::Product interface.

AUTHOR

Top

Nigel Wetters (nwetters@cpan.org)

COPYRIGHT

Top


DesignPattern-Factory documentation Contained in the DesignPattern-Factory distribution.

package DesignPattern::Factory::ConcreteProduct;
$VERSION = '0.01';
use strict;
use Carp; # nice errors
use vars qw( $VERSION @ISA );
use DesignPattern::Factory::Product;
@ISA = qw ( DesignPattern::Factory::Product );

# nothing much here - add more methods to superclass, and override here

1;