Masterctrl/Sources/DeadboltDevice.h
2016-01-12 06:52:12 -05:00

22 lines
503 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);
CAbstractNetworkCommIF *mNetworkCommInterface;
};
#endif // DEADBOLTDEVICE_H