The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
## ----------------------------------------------------------------------------
#  t/filter_null.pm
# -----------------------------------------------------------------------------
# Mastering programmed by YAMASHINA Hio
#
# Copyright YMIRLINK, Inc.
# -----------------------------------------------------------------------------
# $Id$
# -----------------------------------------------------------------------------
package t::filter_null;
use strict;
use warnings;
1;

# -----------------------------------------------------------------------------
# implementation of Tripeltail::Filter.
#
sub _new
{
	my $pkg = shift;
	bless {}, $pkg;
}
sub addHeader { }
sub setHeader { }
sub print { "" }
sub flush { "" }

# -----------------------------------------------------------------------------
# End of File.
# -----------------------------------------------------------------------------