POOF::Example::Wheel - Sample class to illustrate POOF.


POOF documentation Contained in the POOF distribution.

Index


Code Index:

NAME

Top

POOF::Example::Wheel - Sample class to illustrate POOF.

SYNOPSIS

Top

Todo

SEE ALSO

Top

POOF man page.

AUTHOR

Top

Benny Millares <bmillares@cpan.org>

COPYRIGHT AND LICENSE

Top


POOF documentation Contained in the POOF distribution.

package POOF::Example::Wheel;

use strict;
use warnings;

use base qw(POOF);


#-------------------------------------------------------------------------------
# init 


#-------------------------------------------------------------------------------
# properties

sub Tire : Property Public
{
    {
        'type' => 'POOF::Example::Tire',
    }
}

sub Rim : Property Public
{
    {
        'type' => 'POOF::Example::Rim',
    }
}

#-------------------------------------------------------------------------------
# methods



1;
__END__