Start implementation of sensors wrapper, rename files and classes, sort usings
This commit is contained in:
17
app/include/SensorsWrapper.h
Normal file
17
app/include/SensorsWrapper.h
Normal 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_
|
||||
Reference in New Issue
Block a user