Glue
Glue copied to clipboard
⛓️ Bindings that stick. A simple and generic API for C++ to other language bindings supporting bidirectional communication, inheritance and automatic declarations.
See the [readme](https://github.com/TheLartians/Glue#supported-bindings) for the current wishlist of Glue bindings. So far only Lua and Wasm bindings have been implemented. Feel free to comment here if you are interested in...
Thanks for a really useful library! Is it possible to make addConstructor use smart pointers? I.e., in emscripten I can do ```cpp EMSCRIPTEN_BINDINGS(better_smart_pointers) { class_("C") .smart_ptr_constructor("C", &std::make_unique) ; } ```...