mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
8c0bf592d0
- py_converters in hpp files - add guard to prevent inclusion in the wrapper (to avoid 2 specialisation of the same py_converter).
13 lines
486 B
Python
13 lines
486 B
Python
from wrap_generator import *
|
|
|
|
# The module
|
|
mod = module_(full_name = "pytriqs.wrap_test.my_moduleB", doc = " Doc of my_module ")
|
|
mod.add_include("<triqs/../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(mako_template = sys.argv[1], wrap_file = sys.argv[2])
|
|
mod.generate_py_converter_header(mako_template = sys.argv[3], wrap_file = sys.argv[4])
|
|
|