/* ** Copyright (C) 2020 Softbank Robotics Europe ** See COPYING for the license */ #include #include #include #include namespace py = pybind11; PYBIND11_MODULE(qi_python, module) { py::options options; options.enable_user_defined_docstrings(); module.doc() = "LibQi bindings for Python."; qi::py::exportAll(module); }