
ExtUtils::Typemaps::Basic - A set of typemaps for simple types

use ExtUtils::Typemaps::Basic; # First, read my own type maps: my $private_map = ExtUtils::Typemaps->new(file => 'my.map'); # Then, get additional typemaps and merge them into mine $private_map->merge(typemap => ExtUtils::Typemaps::Basic->new); # Now, write the combined map to an output file $private_map->write(file => 'typemap');

ExtUtils::Typemaps::Basic is an ExtUtils::Typemaps subclass that provides a set of mappings for some basic integer, unsigned, and floating point types that aren't in perl's builtin typemap.

These are the overridden methods:
Creates a new ExtUtils::Typemaps::Basic object. It acts as any other ExtUtils::Typemaps object, except that it has the object maps initialized.

ExtUtils::Typemaps, ExtUtils::Typemaps::Default

Steffen Mueller <smueller@cpan.org>

Copyright 2010, 2011 by Steffen Mueller
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.