Add documentation, cleanup

This commit is contained in:
2022-09-17 15:45:48 +02:00
parent bbdd612209
commit 828964bf8f
17 changed files with 215 additions and 121 deletions

View File

@@ -0,0 +1,15 @@
#ifndef NVIDIASENSOR_H_
#define NVIDIASENSOR_H_
#include <sensor/Sensor.h>
class NvidiaSensor : public Sensor {
public:
NvidiaSensor();
~NvidiaSensor();
int value() override;
std::string name() override;
};
#endif // NVIDIASENSOR_H_