common/tools/lib/auto/Text/CSV/status.al
author Simon Howkins <simonh@symbian.org>
Mon, 05 Oct 2009 11:22:09 +0100
changeset 579 78b42fd9e2c4
parent 89 a8aa5d600806
permissions -rw-r--r--
Added code to handle the script being given a log file argument which includes wild cards.

# NOTE: Derived from blib\lib\Text\CSV.pm.
# Changes made here will be lost when autosplit again.
# See AutoSplit.pm.
package Text::CSV;

#line 70 "blib\lib\Text\CSV.pm (autosplit into blib\lib\auto/Text\CSV/status.al)"
################################################################################
# status
#
#    object method returning the success or failure of the most recent combine()
#    or parse().  there are no side-effects.
################################################################################
sub status {
  my $self = shift;
  return $self->{'_STATUS'};
}

# end of Text::CSV::status
1;