## ---------------------------------------------------------------------------- # 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. # -----------------------------------------------------------------------------