17 lines
241 B
C++
17 lines
241 B
C++
#include "MasterCtrl.h"
|
|
|
|
CMasterCtrl::CMasterCtrl()
|
|
{
|
|
qDebug("Creation...");
|
|
mDeadBoltDevice = new CDeadboltDevice;
|
|
}
|
|
|
|
CMasterCtrl::~CMasterCtrl()
|
|
{
|
|
delete mDeadBoltDevice;
|
|
}
|
|
void CMasterCtrl::Start()
|
|
{
|
|
qDebug("Started!");
|
|
}
|