NAME
ExtUtils::Typemaps::Signal - A typemap bundle for dealing with signal related types
VERSION
version 0.009
SYNOPSIS
use ExtUtils::Typemaps::Signal;
# First, read my own type maps:
my $private_map = ExtUtils::Typemaps->new(file => 'my.map');
# Then, get the Signal set and merge it into my maps
my $map = ExtUtils::Typemaps::Signal->new;
$private_map->merge(typemap => $map);
# Now, write the combined map to an output file
$private_map->write(file => 'typemap');
DESCRIPTION
ExtUtils::Typemaps::Signal is an ExtUtils::Typemaps subclass that provides several useful typemaps when dealing with signalling code. It's an aggregation of the following typemaps:
AUTHOR
Leon Timmermans <fawaka@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Leon Timmermans.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.