common/tools/lib/auto/Text/CSV/fields.al
author MattD <mattd@symbian.org>
Wed, 12 Aug 2009 18:04:33 +0100
changeset 350 1e8f54745323
parent 89 a8aa5d600806
permissions -rw-r--r--
sf-postbuild - running analysis in parallel with evalid and post-build zipping.

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

#line 105 "blib\lib\Text\CSV.pm (autosplit into blib\lib\auto/Text\CSV/fields.al)"
################################################################################
# fields
#
#    object method returning the result of the most recent parse() or the input
#    to the most recent combine(), whichever is more recent.  there are no
#    side-effects.
################################################################################
sub fields {
  my $self = shift;
  if (ref($self->{'_FIELDS'})) {
    return @{$self->{'_FIELDS'}};
  }
  return undef;
}

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