| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #ifndef ISENSOR_HPP 2 : #define ISENSOR_HPP 3 : 4 : namespace FreeRTOS_Cpp { 5 : class ISensor { 6 : public: 7 8 : virtual ~ISensor() = default; 8 : virtual bool init() = 0; 9 : virtual float read() = 0; 10 : }; 11 : } 12 : 13 : #endif |
| Generated by: LCOV version 2.0-1 |