19 lines
367 B
C++
19 lines
367 B
C++
#include "SMSDevice.h"
|
|
#include "ProtocolDefs.h"
|
|
|
|
|
|
CSMSDevice::CSMSDevice(int Address, CAbstractNetworkCommIF *NetworkInterface):
|
|
CNetworkDevice(ID_SMS_CLIENT,Address,NetworkInterface)
|
|
{
|
|
}
|
|
|
|
CSMSDevice::~CSMSDevice()
|
|
{
|
|
|
|
}
|
|
|
|
int CSMSDevice::NewDeviceFrameReceived(int DeviceID, int DeviceAddress, int MessageID, int DataSize, QByteArray Data)
|
|
{
|
|
return RET_OK;
|
|
}
|