package Processor; # constructor in base class only sub new { my $pkg = shift; bless {}, $pkg; } # init, process, finish in subclasses 1;