17 lines
262 B
C++
17 lines
262 B
C++
#ifndef NVIDIASENSOR_H_
|
|
#define NVIDIASENSOR_H_
|
|
|
|
#include <sensor/Sensor.h>
|
|
|
|
class NvidiaSensor : public Sensor {
|
|
public:
|
|
NvidiaSensor();
|
|
~NvidiaSensor();
|
|
|
|
int value() override;
|
|
|
|
const std::string toString() const override;
|
|
};
|
|
|
|
#endif // NVIDIASENSOR_H_
|