#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
#------------------------------------------------------------

package Common::Parser::Iterator::Text::TSV;

#
# Common::Parser::Iterator::Text::TSV
#
# Tab delimited file iterator.
#

use strict;

use lib '/app/tools/common/lib';

use base 'Common::Parser::Iterator::Text';

# This is a tab delimited file
sub _delimeter { "\t" }

###
1;    # Play nicely.
###
