Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 68502b72fdb974b7b38a17b048a68c1f > files > 40

perl-SOAP-Lite-0.712-4.fc13.noarch.rpm

package My::SessionIterator;

sub new { 
  my $self = shift;
  my $class = ref($self) || $self;
  bless {_num=>shift} => $class;
}

sub next {
  my $self = shift;
  $self->{_num}++;
}

1;