bindings/python/my_extra_api_definitions.py
author Tom Henderson <tomh@tomh.org>
Thu, 21 May 2009 06:04:40 -0700
changeset 4454 f2af91ee09e7
parent 3408 2cc40b3e4fa5
permissions -rw-r--r--
rescan python bindings

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')])