Help for this page

Select Code to Download


  1. or download this
    package Thingy;
    sub cog_class { 'Thingy::Cog' }
    ...
    package MyThingy;
    use base Thingy;
    sub cog_class { 'MyThingy::Cog' }
    
  2. or download this
    package MyThingy::Cog;
    sub get_ramp { my $self = shift; $self->thingy->ramp_class->new(@_) }