ref: link argument

This commit is contained in:
semenov
2025-08-13 10:22:14 +03:00
parent 303576b7f9
commit 05e09792d7
27 changed files with 111 additions and 137 deletions

View File

@@ -26,12 +26,12 @@ class TCPClient : public QObject
public:
explicit TCPClient(QObject *parent = 0);
void initialize(RecognizeSystem *recognize,ExternalExecuter *externalExecuter,SendSystem *sendSystem);
void initialize(RecognizeSystem *recognize,SendSystem *sendSystem);
void setConnect(ServerSettings *serverSettings);
void waitRead(int time);
QTcpSocket* getSocket();
~TCPClient();
~TCPClient(){};
bool getIsConnected() const;
@@ -51,7 +51,6 @@ private:
SendSystem *sendSystem;
QTcpSocket *socket;
RecognizeSystem *recognizeSystem;
ExternalExecuter * externalExecuter;
bool isConnected;
void setDisconnect();