~ubuntu-branches/ubuntu/oneiric/libextutils-autoinstall-perl/oneiric

« back to all changes in this revision

Viewing changes to inc/Module/Install/Base.pm

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2008-04-20 20:58:37 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080420205837-vg72sld0wv581iz3
Tags: 0.63-1
* New upstream version.
* Use external orig.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#line 1 "inc/Module/Install/Base.pm - /usr/local/lib/perl5/site_perl/5.8.5/Module/Install/Base.pm"
2
 
# $File: //depot/cpan/Module-Install/lib/Module/Install/Base.pm $ $Author: autrijus $
3
 
# $Revision: #10 $ $Change: 1847 $ $DateTime: 2003/12/31 23:14:54 $ vim: expandtab shiftwidth=4
4
 
 
 
1
#line 1 "inc/Module/Install/Base.pm - /usr/local/lib/perl5/site_perl/5.8.7/Module/Install/Base.pm"
5
2
package Module::Install::Base;
6
3
 
7
 
#line 31
 
4
#line 28
8
5
 
9
6
sub new {
10
7
    my ($class, %args) = @_;
18
15
    bless(\%args, $class);
19
16
}
20
17
 
21
 
#line 49
 
18
#line 46
22
19
 
23
20
sub AUTOLOAD {
24
21
    my $self = shift;
25
22
    goto &{$self->_top->autoload};
26
23
}
27
24
 
28
 
#line 60
 
25
#line 57
29
26
 
30
27
sub _top { $_[0]->{_top} }
31
28
 
32
 
#line 71
 
29
#line 68
33
30
 
34
31
sub admin {
35
32
    my $self = shift;
54
51
 
55
52
__END__
56
53
 
57
 
#line 115
 
54
#line 112