~ubuntu-branches/ubuntu/dapper/libmodule-install-perl/dapper

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2004-04-03 23:07:38 UTC
  • Revision ID: james.westby@ubuntu.com-20040403230738-z8wkxryscyv90fjl
Tags: upstream-0.33
ImportĀ upstreamĀ versionĀ 0.33

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#line 1 "inc/Module/Install/Include.pm - lib/Module/Install/Include.pm"
 
2
# $File: //depot/cpan/Module-Install/lib/Module/Install/Include.pm $ $Author: autrijus $
 
3
# $Revision: #8 $ $Change: 1811 $ $DateTime: 2003/12/14 18:52:33 $ vim: expandtab shiftwidth=4
 
4
 
 
5
package Module::Install::Include;
 
6
use Module::Install::Base; @ISA = qw(Module::Install::Base);
 
7
 
 
8
sub include { +shift->admin->include(@_) };
 
9
sub include_deps { +shift->admin->include_deps(@_) };
 
10
sub auto_include { +shift->admin->auto_include(@_) };
 
11
 
 
12
1;