Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 5147dbb8ef53ea6c5691a14d60d6c0ed > files > 75

perl-SOAP-Lite-1.110.0-4.mga5.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;