package VS::RuleEngine::Output::Perl; use strict; use warnings; use Carp qw(croak); use base qw(VS::RuleEngine::Cv VS::RuleEngine::Output); sub pre_process { } sub post_process { } sub process { my $self = shift; return $self->($self, @_); } 1; __END__ =head1 NAME VS::RuleEngine::Output::Perl - Use a code reference as an output =cut =head1 INTERFACE =head2 CLASS METHODS =over 4 =item new ( CODE ) Creates a new instance. The argument I must be a reference to a subroutine - either anoynmous or named. =back =head2 INSTANCE METHODS =over 4 =item pre_process Not used. =item post_process Not used. =item process Forwards the call to the wrapped subroutine. =back =cut