1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
package AnyEvent::Processor::Converter;
# ABSTRACT: Role for any converter class
$AnyEvent::Processor::Converter::VERSION = '0.006';
use Moose::Role;
requires 'convert';
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
AnyEvent::Processor::Converter - Role for any converter class
=head1 VERSION
version 0.006
=head1 METHODS
=head2 convert
=head1 AUTHOR
Frédéric Demians <f.demians@tamil.fr>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2015 by Fréderic Demians.
This is free software, licensed under:
The GNU General Public License, Version 3, June 2007
=cut
|