POOF::Example::Wheels - Sample class to illustrate POOF::Collection.


POOF documentation Contained in the POOF distribution.

Index


Code Index:

NAME

Top

POOF::Example::Wheels - Sample class to illustrate POOF::Collection.

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::Wheels;

use strict;
use warnings;

use base qw(POOF::Collection);


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


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

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

sub Count : Method Public
{
    my ($obj) = @_;
    return @{$obj};
}



1;
__END__