mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
4e9460bc1c
- clean the c_name. - add more refined signature (with c_name optionally in it). - add some autodoc. - clean code : move class in nested, remove useless dict call, etc... - operator2 : move unary - and unit in algebra in general wrapper. - various name change to make private function start with _, for autodoc.
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
from wrap_generator import *
|
|
|
|
# The module
|
|
module = module_(full_name = "pytriqs.parameters.parameters", doc = "TO BE WRITTEN")
|
|
module.add_include("<triqs/parameters/parameters.hpp>")
|
|
module.add_using("namespace triqs::params")
|
|
|
|
# one class
|
|
g = class_(
|
|
py_type = "Parameters",
|
|
c_type = "parameters",
|
|
c_type_absolute = "triqs::params::parameters",
|
|
#serializable= "tuple",
|
|
is_printable= True,
|
|
hdf5 = True,
|
|
# Add + for merging
|
|
arithmetic = ("only_add")
|
|
)
|
|
|
|
#add a constructor
|
|
#g.add_constructor(doc = "DOC of constructor", args = [])
|
|
|
|
g.add_method(signature = "std::string help()", doc = "help")
|
|
|
|
# add getitem/setitem ...
|
|
g.add_getitem(signature = "PyObject *(const char * key)",
|
|
calling_pattern = "PyObject * result = self_c[key].to_python()",
|
|
doc = "")
|
|
g.add_setitem(signature = "void(const char * key, PyObject * ob)",
|
|
calling_pattern = """
|
|
if (!self_c[key].from_python_convertible(ob)) return NULL; // early exit, the error is set by the converter
|
|
self_c[key].set_from_python(ob);
|
|
""",
|
|
doc = "")
|
|
|
|
module.add_class(g)
|
|
|
|
if __name__ == '__main__' :
|
|
module.generate_code()
|
|
|