blob: 61e1b349d042d958ce724bf2caabd70438f6a344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <QString>
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;
}
};
|