ref: segregate chat sytem

This commit is contained in:
semenov
2025-07-31 10:21:47 +03:00
parent 88239e8491
commit 5a07c144a1
24 changed files with 585 additions and 144 deletions

View File

@@ -101,6 +101,14 @@ public:
QString From;
QString To;
QString Text;
ClientMessage(){}
ClientMessage(QString from,QString to,QString text)
{
From = from;
To = to;
Text = text;
}
};
class ServerTask