Changeset 14700

Show
Ignore:
Timestamp:
06/27/08 16:18:38 (5 years ago)
Author:
tokuhirom
Message:

ちょっと exporter つかわしてもらいますよ

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dan/perl/Object-with/branches/yappo/lib/Object/with.pm

    r14699 r14700  
    44use warnings; 
    55our $VERSION = '0.01'; 
     6use Exporter 'import'; 
    67use Data::Dumper; 
    7  
    88use XSLoader; 
    9  
    109XSLoader::load 'Object::with', $VERSION; 
    1110 
    12  
    13 sub import { 
    14     my $class = shift; 
    15     my $pkg   = caller(0); 
    16     no strict 'refs'; 
    17     *{"$pkg\::with"} = \&with; 
    18 } 
     11our @EXPORT = qw/with/; 
    1912 
    2013our $TMP_OBJ;