| 11 | #include <carla/client/ServerSideSensor.h> |
| 12 | |
| 13 | static void SubscribeToStream(carla::client::Sensor &self, boost::python::object callback) { |
| 14 | self.Listen(MakeCallback(std::move(callback))); |
| 15 | } |
| 16 | |
| 17 | void export_sensor() { |
| 18 | using namespace boost::python; |
nothing calls this directly
no test coverage detected