Files
LR-EnviroStation/app/src/SensorDataProcessor.hpp
T
dragonfly2046 7f17e56e34
Build / Build app and tests (ubuntu-24.04) (push) Failing after 2m32s
Documentation / Build (1.14.0) (push) Failing after 15s
Documentation / Build (1.9.6) (push) Successful in 12s
Documentation / Deploy (push) Has been skipped
Add thread wrapper
2026-04-23 21:37:09 -07:00

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