Lines Matching full:sensor
3 #include "interfaces/sensor.hpp"
14 class Sensor final : class
15 public interfaces::Sensor,
16 public std::enable_shared_from_this<Sensor>
21 Sensor(interfaces::Sensor::Id sensorId, const std::string& sensorMetadata,
25 ~Sensor() = default;
26 Sensor(const Sensor&) = delete;
27 Sensor& operator=(const Sensor&) = delete;
28 Sensor(Sensor&&) = delete;
29 Sensor& operator=(Sensor&&) = delete;
45 static void signalProc(const std::weak_ptr<Sensor>& weakSelf,
53 interfaces::Sensor::Id sensorId;