Hoppy::Hook::Base - Base class of Hoppy::Hook.


Hoppy documentation Contained in the Hoppy distribution.

Index


Code Index:

NAME

Top

Hoppy::Hook::Base - Base class of Hoppy::Hook.

SYNOPSIS

Top

  package My::Hook::Class;
  use base qw(Hoppy::Hook::Base);

DESCRIPTION

Top

Base class of Hoppy::Hook.

Derived classes of Hoppy::Hook::Base must implement work() method.

METHODS

Top

AUTHOR

Top

Takeshi Miki <miki@cpan.org>

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Top


Hoppy documentation Contained in the Hoppy distribution.

package Hoppy::Hook::Base;
use strict;
use warnings;
use base qw(Hoppy::Base);

__PACKAGE__->mk_virtual_methods($_) for qw( work );

1;
__END__