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