Тайминг. Работает. Предварительно.

This commit is contained in:
2025-07-30 12:34:34 +03:00
parent 5c80f6824a
commit 726abda4c0
19 changed files with 292 additions and 9 deletions

View File

@@ -96,6 +96,16 @@ public:
isLoggedIn = value;
}
void setAccessType(QString type)
{
accessType = type;
}
QString getAccessType()
{
return accessType;
}
private:
QString name;
@@ -109,6 +119,7 @@ private:
bool isUnity = false;
TypeClientAutorization TypeClient;
QString accessType = "";
};
#endif // CLIENT_H

View File

@@ -19,7 +19,7 @@ enum PacketType
TYPE_FILESIZE = 20,
TYPE_BIGXML = 21,
TYPE_XMLANSWER_MESSAGE_FOR_GUI = 90,
TYPE_XMLANSWER_MESSAGE_FOR_GUI = 90,
//xml-ответы на запросы к БД
TYPE_XMLANSWER_QUERY_DB__LIST_INSTRUCTORS = 100,