package Forest::Tree::Reader; use Moose::Role; our $VERSION = '0.03'; our $AUTHORITY = 'cpan:STEVAN'; with 'Forest::Tree::Loader'; requires 'read'; # satisfy the Loader interface here ... sub load { my $self = shift; $self->read(@_); } 1; __END__ =pod =head1 NAME Forest::Tree::Reader - An abstract role for tree reader =head1 DESCRIPTION This is an abstract role for tree readers. Tree readers are also Tree loaders, that is why this module also does the L role. =head1 ATTRIBUTES =over 4 =item I =back =head1 REQUIRED METHODS =over 4 =item B =back =head1 METHODS =over 4 =item B This satisfies the L interface. =back =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 AUTHOR Stevan Little Estevan.little@iinteractive.comE =head1 COPYRIGHT AND LICENSE Copyright 2008 Infinity Interactive, Inc. L This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut