The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Gungho::Base - Base Class For Various Gungho Objects

SYNOPSIS

MMETHODS

new(\%config)

Creates a new object instance. Takes a config hashref.

setup()

Sets up the object. Use it like this in your object:

sub setup
{
my $self = shift;
# do custom setup
$self->next::method(@_);
}

mk_virtual_methods

Creates virtual methods (methods that must be overridden). These methods will die() unless you provide an implementation in your subclass