Masterctrl/Sources/Chalet/ChaletInterface.h
2020-09-13 13:47:47 -04:00

22 lines
513 B
C++

#ifndef CCHALETINTERFACE_H
#define CCHALETINTERFACE_H
#include "NetworkDevice.h"
#include "ChaletLoraDevice.h"
class CChaletInterface: public QObject, public CNetworkDevice
{
Q_OBJECT
public:
CChaletInterface(int Address, CAbstractNetworkCommIF *NetworkInterface, CChaletLoraDevice *DevicePtr);
virtual int NewDeviceFrameReceived(int DeviceID, int DeviceAddress, int MessageID, int DataSize, QByteArray Data);
private:
CChaletLoraDevice *mChaletLoraDevice;
};
#endif // CCHALETINTERFACE_H