20 lines
524 B
C++
20 lines
524 B
C++
#ifndef AVRECEIVERINTERFACE_H
|
|
#define AVRECEIVERINTERFACE_H
|
|
|
|
#include "NetworkDevice.h"
|
|
class CAVReceiverDevice;
|
|
|
|
class CAvReceiverInterface: public QObject, public CNetworkDevice
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CAvReceiverInterface(int Address, CAbstractNetworkCommIF *NetworkInterface, CAVReceiverDevice *DevicePtr );
|
|
virtual int NewDeviceFrameReceived(int DeviceID, int DeviceAddress, int MessageID, int DataSize, QByteArray Data);
|
|
|
|
private:
|
|
CAVReceiverDevice *mAvReceiverDevice;
|
|
};
|
|
|
|
#endif // AVRECEIVERINTERFACE_H
|