Skip to content
Snippets Groups Projects
Commit 3aa4c28d authored by legoc's avatar legoc
Browse files

Default value for options added in Server.start(name, args, options)

parent 74fd8ee4
No related branches found
No related tags found
No related merge requests found
...@@ -258,7 +258,7 @@ PYBIND11_MODULE(cameopy, m) { ...@@ -258,7 +258,7 @@ PYBIND11_MODULE(cameopy, m) {
py::call_guard<py::gil_scoped_release>()) py::call_guard<py::gil_scoped_release>())
.def("start", py::overload_cast<const std::string&, const std::vector<std::string>&, int>(&cameo::Server::start), .def("start", py::overload_cast<const std::string&, const std::vector<std::string>&, int>(&cameo::Server::start),
"name"_a, "args"_a, "options"_a, "name"_a, "args"_a, "options"_a = 0,
py::call_guard<py::gil_scoped_release>()) py::call_guard<py::gil_scoped_release>())
.def("connectAll", &cameo::Server::connectAll, .def("connectAll", &cameo::Server::connectAll,
"name"_a, "options"_a = 0, "name"_a, "options"_a = 0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment