Help for this page

Select Code to Download


  1. or download this
    package factory;
    
    ...
        $ret[0] = 'HQ' if ($_row[0] eq 'Headquarters');
        return @ret;
    }
    
  2. or download this
    my $fact = factory->new();
    my $instance = $fact->getInstance($dcr_type, @row);
    return $instance->doTheDeed();