Masterctrl/Sources/MasterCtrl.cpp

17 lines
244 B
C++

#include "MasterCtrl.h"
CMasterCtrl::CMasterCtrl()
{
qDebug("Creation...");
mDeadBoltDevice = new CDeadboltDevice(1);
}
CMasterCtrl::~CMasterCtrl()
{
delete mDeadBoltDevice;
}
void CMasterCtrl::Start()
{
qDebug("Started!");
}