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

package Common::Parser::Iterator::Text::CSV;

#
# Common::Parser::Iterator::Text::CSV
#
# Comma delimited file iterator.
#

use strict;

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

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

sub _delimeter { ',' }

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