| 89 | class SensorPipeline { |
| 90 | public: |
| 91 | explicit SensorPipeline(std::string_view name) |
| 92 | : name_(name) {} |
| 93 | |
| 94 | // RAII: destructor guarantees clean shutdown (Module 07) |
| 95 | ~SensorPipeline() { stop(); } |
nothing calls this directly
no outgoing calls
no test coverage detected