23 lines
588 B
C++
23 lines
588 B
C++
#ifndef LANDEVICEPRESENCECONFIG_H
|
|
#define LANDEVICEPRESENCECONFIG_H
|
|
#include <QDataStream>
|
|
#include <QString>
|
|
|
|
class CLANDevicePresenceConfig
|
|
{
|
|
public:
|
|
CLANDevicePresenceConfig();
|
|
|
|
QString mDeviceIPAddress;
|
|
unsigned int mCANStatusBit;
|
|
bool mIsDetectionActive;
|
|
QString mDeviceDescription;
|
|
|
|
CLANDevicePresenceConfig& operator=(const CLANDevicePresenceConfig &source);
|
|
};
|
|
|
|
QDataStream &operator<<(QDataStream &out, const CLANDevicePresenceConfig &source);
|
|
QDataStream &operator>>(QDataStream &in, CLANDevicePresenceConfig &dest);
|
|
|
|
#endif // LANDEVICEPRESENCECONFIG_H
|