22 lines
389 B
C++
22 lines
389 B
C++
#ifndef DEADBOLTDEVICE_H
|
|
#define DEADBOLTDEVICE_H
|
|
|
|
#include "GlobalDefine.h"
|
|
#include "232NetworkCommIF.h"
|
|
#include "AbstractDevice.h"
|
|
|
|
|
|
class CDeadboltDevice: public CAbstractDevice
|
|
{
|
|
public:
|
|
CDeadboltDevice(int Address);
|
|
~CDeadboltDevice();
|
|
|
|
virtual int NewDeviceFrameReceived(QByteArray Frame);
|
|
|
|
|
|
C232NetworkCommIF *mNetworkCommInterface;
|
|
};
|
|
|
|
#endif // DEADBOLTDEVICE_H
|