bindings/python/my_extra_api_definitions.py
author Tom Henderson <tomh@tomh.org>
Wed, 08 Apr 2009 16:07:34 -0700
changeset 4373 e493e80274bd
parent 3408 2cc40b3e4fa5
permissions -rw-r--r--
implementation and plumbing of Ipv4InterfaceAddress class

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