#pragma once #include struct ClientInfo { int CUID = 0; QString nick = ""; QString pcName = ""; bool activated = false; bool operator==(const ClientInfo& other) { return other.nick == nick && other.pcName == pcName && other.CUID == CUID; } };