Help for this page

Select Code to Download


  1. or download this
    sub new_from_http_request {
      my ($class) = shift ;
    ...
      $self->{myA} = undef ;
      return bless $self, $class ;
    }
    
  2. or download this
    my $httpr = AnotherModule::f() ;
    my $ownHttpr =
      My::HTTPRequest->new_from_http_request($httpr);
    
  3. or download this
    sub new{
      my ($class) = shift ;
    ...
      $self->{'myA'} = undef ;
      return bless $self, $class ;
    }