The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Devel::Memalyzer::Base - Base class for Devel::Memalyzer objects.

DESCRIPTION

Provides new() and a simple accessor generator.

SYNOPSYS

    use base 'Devel::Memalyzer::Base';

    __PACKAGE__->gen_accessors qw/ a b c /;

    my $instance = __PACKAGE__->new( a => 1, b => 2, c => 3 );

    $instance->a;       #Get
    $instance->a( 55 ); #Set

AUTHORS

Chad Granum exodist7@gmail.com

COPYRIGHT

Copyright (C) 2010 Rentrak Corperation