#ifndef LANDEVICEPRESENCECONFIG_H #define LANDEVICEPRESENCECONFIG_H #include #include 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