The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Clownfish::Binding::Core::Class - Generate core C code for a class.

DESCRIPTION

Clownfish::Class is an abstract specification for a class. This module autogenerates the C code with implements that specification.

METHODS

new

    my $class_binding = Clownfish::Binding::Core::Class->new(
        client => $class,
    );

to_c_header

Return the .h file which contains autogenerated C code defining the class's interface: all method invocation functions, etc...

to_c

Return the .c file which contains autogenerated C code necessary for the class to function properly.