ref: clean unused in Core

This commit is contained in:
semenov
2025-08-15 14:47:57 +03:00
parent 87db4d0ef4
commit 3c65c4b08c
22 changed files with 1983 additions and 2083 deletions

View File

@@ -14,9 +14,6 @@ void TCPClient::initialize(RecognizeSystem *recognize,SendSystem *sendSystem)
this->recognizeSystem = recognize;
this->sendSystem = sendSystem;
isConnected = false;
connect(recognize,&RecognizeSystem::sigSocketWaitForReadyRead,this,&TCPClient::waitRead,Qt::DirectConnection);
emit sigSendDebugLog(Tools::getTime() + " Client started");
}
@@ -59,17 +56,6 @@ void TCPClient::setDisconnect()
emit sigSendDebugLog("Server disabled");
}
void TCPClient:: waitRead(int time)
{
socket->waitForReadyRead(time);
}
QTcpSocket *TCPClient::getSocket()
{
return socket;
}
void TCPClient::slotConnectNotify()
{
if(socket->state() != QTcpSocket::ConnectedState)