25 lines
359 B
C++
25 lines
359 B
C++
#ifndef SENSOR_DATA_PROCESSOR_HPP
|
|
#define SENSOR_DATA_PROCESSOR_HPP
|
|
|
|
#include "ThreadWrapper.hpp"
|
|
|
|
namespace app {
|
|
|
|
class SensorDataProcessor : public ThreadWrapper<SensorDataProcessor> {
|
|
public:
|
|
SensorDataProcessor() = default;
|
|
~SensorDataProcessor() = default;
|
|
|
|
void init();
|
|
|
|
void run();
|
|
|
|
void finalize();
|
|
|
|
private:
|
|
};
|
|
|
|
} // namespace app
|
|
|
|
#endif
|