This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/sensors/linux/WiFiSensorLinux.h
2016-07-15 15:00:49 +02:00

34 lines
371 B
C++

#ifndef WIFISENSORLINUX_H
#define WIFISENSORLINUX_H
#include "../WiFiSensor.h"
class WiFiSensorLinux : public WiFiSensor {
private:
WiFiSensorLinux() {
}
public:
/** singleton access */
static WiFiSensorLinux& get() {
static WiFiSensorLinux wifi;
return wifi;
}
void start() override {
}
void stop() override {
}
};
#endif // WIFISENSORLINUX_H