Start implementation of sensors wrapper, rename files and classes, sort usings

This commit is contained in:
2022-08-02 23:11:01 +02:00
parent 1da0844ae8
commit f7bd651121
8 changed files with 63 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
#ifndef SENSORSWRAPPER_H_
#define SENSORSWRAPPER_H_
#include <vector>
#include <sensors/sensors.h>
class SensorsWrapper {
public:
SensorsWrapper();
private:
std::vector<const sensors_subfeature *> mTemperatureSensors;
std::vector<const sensors_subfeature *> mFanSensors;
};
#endif // SENSORSWRAPPER_H_