Help for this page

Select Code to Download


  1. or download this
    package ClassFactory;
    
    ...
      my ($self,$class) = @_;
      return $class->new(%$self);
    }
    
  2. or download this
    my $factory = Class::Factory->new( auth vars );
    
    my $obj = $factory->create("Class");
    my $subobj = $factory->create("Class::SubClass");