15 lines
123 B
C++
15 lines
123 B
C++
|
|
||
|
#include "SensorBase.h"
|
||
|
|
||
|
|
||
|
|
||
|
SensorBase::SensorBase()
|
||
|
|
||
|
{
|
||
|
SensorInfo.isSensorInit = false;
|
||
|
}
|
||
|
|
||
|
SensorBase::~SensorBase()
|
||
|
{
|
||
|
}
|