wrapit
wrapit copied to clipboard
Automatization of C++--Julia wrapper generation
Results
12
wrapit issues
Sort by
recently updated
recently updated
newest added
Right now the generated entry point `define_julia_module` starts with adding the wrappers, i.e. ```cpp std::vector wrappers = { .... }; ``` followed by adding enums. This leads to faulty codegen...
MWE source file ```cpp class A { public: explicit A(const char* person = "World"): person_(person){} void say_hello() const{ std::cout