feat: send xml answer

This commit is contained in:
semenov
2024-08-15 15:30:22 +03:00
parent 7ba182b6cf
commit 883ac44e6b
41 changed files with 1499 additions and 876 deletions

View File

@@ -10,7 +10,7 @@
#include <QCoreApplication>
#include "Core\recognizesystem.h"
#include "Core\tools.h"
#include "Core\UpdateController.h"
#include "Core\updatecontroller.h"
#include "Core\externalexecuter.h"
class UpdateController;
@@ -23,6 +23,8 @@ public:
explicit TCPClient(QObject *parent = 0);
void Initialize(UpdateController *updateController,RecognizeSystem *recognize,ExternalExecuter *externalExecuter);
void SetConnect(ServerSettings *serverSettings);
void SendClientAutorization();
void SetDisconnect();
void WaitWrites();
QTcpSocket* GetSocket();
~TCPClient();
@@ -31,7 +33,7 @@ signals:
void onSendDebugLog(QString message);
public slots:
void onMessageEntered(QString message);
void MessageEntered(QString message);
private slots:
void onReadyRead();