autowrap.python.boilerplate

Necessary boilerplate for pyd.

To wrap all functions/return/parameter types and struct/class definitions from a list of modules, write this in a "main" module and generate mylib.{so,dll}:

mixin wrapAll(LibraryName("mylib"), Modules("module1", "module2", ...));

Public Imports

autowrap.types
public import autowrap.types : Modules, LibraryName, PreModuleInitCode, PostModuleInitCode, RootNamespace;

Members

Functions

pydInitMixin
string pydInitMixin(string libraryName)

A string to be mixed in that defines the PyInit function for a library.

pydMainMixin
string pydMainMixin(Modules modules, PreModuleInitCode preModuleInitCode, PostModuleInitCode postModuleInitCode)

A string to be mixed in that defines PydMain, automatically registering all functions and structs in the passed in modules.

wrapAll
string wrapAll(LibraryName libraryName, Modules modules, PreModuleInitCode preModuleInitCode, PostModuleInitCode postModuleInitCode)

A string to be mixed in that defines all the necessary runtime pyd boilerplate.

wrapDlang
string wrapDlang()

Returns a string to mixin that implements the necessary boilerplate to create a Python library containing one Python module wrapping all relevant D code and data structures.

Meta