missed the rx_zmqip implementations in detector.h and python bindings (#975)

This commit is contained in:
2024-09-18 13:41:58 +02:00
committed by GitHub
parent ab7425a9d3
commit 33b8e0817e
2 changed files with 0 additions and 17 deletions

View File

@ -1039,15 +1039,6 @@ void init_det(py::module &m) {
(void (Detector::*)(uint16_t, int)) &
Detector::setRxZmqPort,
py::arg(), py::arg() = -1);
CppDetectorApi.def(
"getRxZmqIP",
(Result<sls::IpAddr>(Detector::*)(sls::Positions) const) &
Detector::getRxZmqIP,
py::arg() = Positions{});
CppDetectorApi.def("setRxZmqIP",
(void (Detector::*)(const sls::IpAddr, sls::Positions)) &
Detector::setRxZmqIP,
py::arg(), py::arg() = Positions{});
CppDetectorApi.def("getClientZmqPort",
(Result<uint16_t>(Detector::*)(sls::Positions) const) &
Detector::getClientZmqPort,