20 lines
457 B
C++
20 lines
457 B
C++
#ifndef SPRINKLERDEVICE_H
|
|
#define SPRINKLERDEVICE_H
|
|
|
|
#include "GlobalDefine.h"
|
|
#include "NetworkDevice.h"
|
|
|
|
|
|
class CSprinklerDevice: public QObject, public CNetworkDevice
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CSprinklerDevice(int Address, CAbstractNetworkCommIF *NetworkInterface);
|
|
virtual ~CSprinklerDevice();
|
|
|
|
virtual int NewDeviceFrameReceived(int DeviceID, int DeviceAddress, int MessageID, int DataSize, QByteArray Data);
|
|
|
|
};
|
|
|
|
#endif // SPRINKLERDEVICE_H
|