22 lines
503 B
C++
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
|