Masterctrl/Sources/DeadboltDevice.h
J-F Martel f4fc549a8a Dev.
2016-01-15 14:43:58 -05:00

20 lines
451 B
C++

#ifndef DEADBOLTDEVICE_H
#define DEADBOLTDEVICE_H
#include "GlobalDefine.h"
#include "232NetworkCommIF.h"
#include "NetworkDevice.h"
class CDeadboltDevice: public CNetworkDevice
{
public:
CDeadboltDevice(int Address, CAbstractNetworkCommIF *NetworkInterface);
virtual ~CDeadboltDevice();
virtual int NewDeviceFrameReceived(int DeviceID, int DeviceAddress, int MessageID, int DataSize, QByteArray Data);
};
#endif // DEADBOLTDEVICE_H