oracular (3) ExtUtils::Typemaps::Default.3pm.gz

Provided by: libextutils-typemaps-default-perl_1.05-5_all bug

NAME

       ExtUtils::Typemaps::Default - A set of useful typemaps

SYNOPSIS

         use ExtUtils::Typemaps::Default;
         # First, read my own type maps:
         my $private_map = ExtUtils::Typemaps->new(file => 'my.map');

         # Then, get the default set and merge it into my maps
         my $map = ExtUtils::Typemaps::Default->new;
         $private_map->merge(typemap => $map);

         # Now, write the combined map to an output file
         $private_map->write(file => 'typemap');

DESCRIPTION

       "ExtUtils::Typemaps::Default" is an "ExtUtils::Typemaps" subclass that provides a set of default mappings
       (in addition to what perl itself provides). These default mappings are currently defined as the
       combination of the mappings provided by the following typemap classes which are provided in this
       distribution:

       ExtUtils::Typemaps::ObjectMap, ExtUtils::Typemaps::STL, ExtUtils::Typemaps::Basic

METHODS

       These are the overridden methods:

   new
       Creates a new "ExtUtils::Typemaps::Default" object.

SEE ALSO

       ExtUtils::Typemaps, ExtUtils::Typemaps::ObjectMap, ExtUtils::Typemaps::STL, ExtUtils::Typemaps::Basic

AUTHOR

       Steffen Mueller <smueller@cpan.org>

       Copyright 2010, 2011, 2012, 2013 by Steffen Mueller

       This program is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.