当前位置: 首页>>代码示例>>Python>>正文


Python pybindgen.Module方法代码示例

本文整理汇总了Python中pybindgen.Module方法的典型用法代码示例。如果您正苦于以下问题:Python pybindgen.Module方法的具体用法?Python pybindgen.Module怎么用?Python pybindgen.Module使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pybindgen的用法示例。


在下文中一共展示了pybindgen.Module方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: my_module_gen

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def my_module_gen(out_file):

    mod = Module('h')
    mod.add_include('"h.h"')

    H = mod.add_class('H')
    H.add_constructor([])
    H.add_method('Do', None, [])

    Inner = mod.add_class('Inner', outer_class=H)
    Inner.add_constructor([])
    Inner.add_method('Do', None, [])

    MostInner = mod.add_class('MostInner', outer_class=Inner)
    MostInner.add_constructor([])
    MostInner.add_method('Do', None, [])

    mod.generate(FileCodeSink(out_file)) 
开发者ID:KTH,项目名称:royal-chaos,代码行数:20,代码来源:modulegen.py

示例2: my_module_gen

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def my_module_gen(out_file):

    mod = Module('bsp')

    mod.add_include ('"bsp.h"')

    Foo = mod.add_class('Foo', memory_policy=BoostSharedPtr('::Foo'))

    Foo.add_constructor([param('std::string', 'datum')])
    Foo.add_constructor([])
    Foo.add_method('get_datum', retval('const std::string'), [])
    Foo.add_method('set_datum', None, [param('const std::string', 'datum')])


    mod.add_function('function_that_takes_foo', None,
                     [param('boost::shared_ptr<Foo>', 'foo')])

    mod.add_function('function_that_returns_foo', retval('boost::shared_ptr<Foo>'), [])
    
    ## ---- finally, generate the whole thing ----
    mod.generate(FileCodeSink(out_file)) 
开发者ID:KTH,项目名称:royal-chaos,代码行数:23,代码来源:modulegen.py

示例3: module_init

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def module_init():
    root_module = Module('ns.propagation', cpp_namespace='::ns3')
    return root_module 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:5,代码来源:modulegen__gcc_LP64.py

示例4: module_init

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def module_init():
    root_module = Module('ns.bridge', cpp_namespace='::ns3')
    return root_module 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:5,代码来源:modulegen__gcc_LP64.py

示例5: module_init

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def module_init():
    root_module = Module('ns.topology_read', cpp_namespace='::ns3')
    return root_module 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:5,代码来源:modulegen__gcc_LP64.py

示例6: module_init

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def module_init():
    root_module = Module('ns.config_store', cpp_namespace='::ns3')
    return root_module 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:5,代码来源:modulegen__gcc_LP64.py

示例7: module_init

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def module_init():
    root_module = Module('ns.mpi', cpp_namespace='::ns3')
    return root_module 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:5,代码来源:modulegen__gcc_LP64.py

示例8: module_init

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def module_init():
    root_module = Module('ns.tools', cpp_namespace='::ns3')
    return root_module 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:5,代码来源:modulegen__gcc_LP64.py

示例9: module_init

# 需要导入模块: import pybindgen [as 别名]
# 或者: from pybindgen import Module [as 别名]
def module_init():
    root_module = Module('ns.antenna', cpp_namespace='::ns3')
    return root_module 
开发者ID:imec-idlab,项目名称:IEEE-802.11ah-ns-3,代码行数:5,代码来源:modulegen__gcc_LP64.py


注:本文中的pybindgen.Module方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。