9#include <iser/ISerializable.h>
23 struct IncomingConnectionParam
26 QString host =
"localhost";
31 IncomingConnectionParam()
33 id = QUuid::createUuid().toString(QUuid::WithoutBraces).toUtf8();
36 bool operator==(
const IncomingConnectionParam& other)
const
38 return (host == other.host) &&
39 (description == other.description) &&
40 (wsPort == other.wsPort) &&
41 (httpPort == other.httpPort) &&
45 bool operator!=(
const IncomingConnectionParam& other)
const
47 return !operator==(other);
51 typedef QList<IncomingConnectionParam> IncomingConnectionList;
53 virtual QList<IncomingConnectionParam> GetIncomingConnections()
const = 0;