22 lines
354 B
C++
22 lines
354 B
C++
#include "DeadboltDevice.h"
|
|
|
|
|
|
CDeadboltDevice::CDeadboltDevice(int Address)
|
|
{
|
|
mNetworkCommInterface = new C232NetworkCommIF(this);
|
|
mDeviceAddress = Address;
|
|
mDeviceID = ID_DEADBOLT;
|
|
}
|
|
|
|
CDeadboltDevice::~CDeadboltDevice()
|
|
{
|
|
delete mNetworkCommInterface;
|
|
}
|
|
|
|
int CDeadboltDevice::NewDeviceFrameReceived(QByteArray Frame)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|