5 lines
130 B
C++
5 lines
130 B
C++
#include "Sensor.h"
|
|
|
|
Sensor::Sensor() : Thing(0) { // for now, id should be set properly later
|
|
this->type = Thing::SensorType;
|
|
} |