package Log::Saftpresse::CountersOutput; use Moose; # ABSTRACT: base class for output of counters our $VERSION = '1.6'; # VERSION sub output { my ( $self, $counters ) = @_; die('not implemented'); } sub init { return; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Log::Saftpresse::CountersOutput - base class for output of counters =head1 VERSION version 1.6 =head1 AUTHOR Markus Benning =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 1998 by James S. Seymour, 2015 by Markus Benning. This is free software, licensed under: The GNU General Public License, Version 2, June 1991 =cut