| VS-RuleEngine documentation | Contained in the VS-RuleEngine distribution. |
VS::RuleEngine::Cv - Base class for objects implemented as a code reference
Creates a new instance.
| VS-RuleEngine documentation | Contained in the VS-RuleEngine distribution. |
package VS::RuleEngine::Cv; use strict; use warnings; use Carp qw(croak); sub new { my ($pkg, $cv) = @_; my $self = bless $cv, $pkg; return $self; } 1; __END__