NAME
ExtUtils::Typemap::Basic - A set of typemaps for simple types
SYNOPSIS
use ExtUtils::Typemap::Basic;
# First, read my own type maps:
my $private_map = ExtUtils::Typemap->new(file => 'my.map');
# Then, get additional typemaps and merge them into mine
$private_map->merge(typemap => ExtUtils::Typemap::Basic->new);
# Now, write the combined map to an output file
$private_map->write(file => 'typemap');
DESCRIPTION
ExtUtils::Typemap::Basic is an ExtUtils::Typemap subclass that provides a set of mappings for some basic integer, unsigned, and floating point types that aren't in perl's builtin typemap.
METHODS
These are the overridden methods:
new
Creates a new ExtUtils::Typemap::Basic object. It acts as any other ExtUtils::Typemap object, except that it has the object maps initialized.
SEE ALSO
ExtUtils::Typemap, ExtUtils::Typemap::Default
AUTHOR
Steffen Mueller <smueller@cpan.org>
COPYRIGHT AND LICENSE
Copyright 2010 by Steffen Mueller
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.