plugin base class

git-svn-id: https://svn.perl.org/qpsmtpd/branches/v010@32 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
Ask Bjørn Hansen 2002-07-06 07:18:48 +00:00
parent fd3284ab88
commit ae8adc41a2

17
lib/Qpsmtpd/Plugin.pm Normal file
View File

@ -0,0 +1,17 @@
package Qpsmtpd::Plugin;
use strict;
sub new {
my $proto = shift;
my $class = ref($proto) || $proto;
bless ({}, $class);
}
sub register_hook {
warn "REGISTER HOOK!";
}
1;