3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 11:43:47 +01:00
dft_tools/test/pytriqs/wrap_test/my_moduleB_desc.py

13 lines
362 B
Python
Raw Normal View History

from wrap_generator import *
# The module
2014-05-30 23:08:32 +02:00
mod = module_(full_name = "my_moduleB", doc = " Doc of my_module ")
mod.use_module('my_module')
2014-05-30 23:08:32 +02:00
mod.add_include("<triqs/../test/pytriqs/wrap_test/b.hpp>")
mod.add_include("<pytriqs/converters/my_module.hpp>")
mod.add_function (name = "print_a2", signature = "void(A a)", doc = "DOC of print_a")
mod.generate_code()