From ae8adc41a2e88079a06855d7545d039003e9e1f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Sat, 6 Jul 2002 07:18:48 +0000 Subject: [PATCH] plugin base class git-svn-id: https://svn.perl.org/qpsmtpd/branches/v010@32 958fd67b-6ff1-0310-b445-bb7760255be9 --- lib/Qpsmtpd/Plugin.pm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/Qpsmtpd/Plugin.pm diff --git a/lib/Qpsmtpd/Plugin.pm b/lib/Qpsmtpd/Plugin.pm new file mode 100644 index 0000000..a15b286 --- /dev/null +++ b/lib/Qpsmtpd/Plugin.pm @@ -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;