author | Mitch Watrous <watrous@u.washington.edu> |
Thu, 13 Jun 2013 14:27:04 -0700 | |
changeset 9827 | 9081fd8fb7a3 |
parent 3408 | 2cc40b3e4fa5 |
permissions | -rw-r--r-- |
from pybindgen import Module, FileCodeSink, write_preamble, param, retval def register_types(module): module.add_class('MyClass') def register_methods(root_module): MyClass = root_module['MyClass'] MyClass.add_constructor([], visibility='public') MyClass.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')], visibility='public') def register_functions(module): module.add_function('SomeFunction', 'int', [param('int', 'xpto')])