ExtUtils::Typemaps::STL - A set of useful typemaps for STL


NAME

ExtUtils::Typemaps::STL - A set of useful typemaps for STL


SYNOPSIS

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


DESCRIPTION

ExtUtils::Typemaps::STL is an ExtUtils::Typemaps subclass that provides a few of default mappings for Standard Template Library types. These default mappings are currently defined as the combination of the mappings provided by the following typemap classes which are provided in this distribution:

the ExtUtils::Typemaps::STL::Vector manpage, the ExtUtils::Typemaps::STL::String manpage, the ExtUtils::Typemaps::STL::List manpage

More are to come, patches are welcome.


METHODS

These are the overridden methods:

new

Creates a new ExtUtils::Typemaps::STL object.


SEE ALSO

the ExtUtils::Typemaps manpage, the ExtUtils::Typemaps::Default manpage

the ExtUtils::Typemaps::STL::String manpage, the ExtUtils::Typemaps::STL::Vector manpage the ExtUtils::Typemaps::STL::List manpage


AUTHOR

Steffen Mueller <smueller@cpan.org>


COPYRIGHT AND LICENSE

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.

 ExtUtils::Typemaps::STL - A set of useful typemaps for STL