1package # hide from indexers 2 ExtUtils::Typemaps::Test; 3use strict; 4use warnings; 5require ExtUtils::Typemaps; 6our @ISA = qw(ExtUtils::Typemaps); 7 8sub new { 9 my $class = shift; 10 my $obj = $class->SUPER::new(@_); 11 $obj->add_typemap(ctype => 'mytype*', xstype => 'T_SV'); 12 return $obj; 13} 14 151; 16