MCPcopy Create free account
hub / github.com/arjunskumar/Robotics_CPP_Notes / ~SensorPipeline

Method ~SensorPipeline

capstone/sensor_pipeline.hpp:95–95  ·  view source on GitHub ↗

RAII: destructor guarantees clean shutdown (Module 07)

Source from the content-addressed store, hash-verified

93
94 // RAII: destructor guarantees clean shutdown (Module 07)
95 ~SensorPipeline() { stop(); }
96
97 // Non-copyable, non-movable (owns threads — Module 10)
98 SensorPipeline(const SensorPipeline&) = delete;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected