mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
ref: link argument
This commit is contained in:
@@ -17,27 +17,28 @@ public:
|
||||
void setSocket(QTcpSocket *socket);
|
||||
void sendClientAutorization();
|
||||
void sendDisable();
|
||||
void sendFileBlock(QString path);
|
||||
void sendFolderBlock(QString path);
|
||||
void sendFileBlockWithVersion(QString localPath, QString serverPath);
|
||||
void sendFileBlock(const QString& path);
|
||||
void sendFolderBlock(const QString& path);
|
||||
void sendFileBlockWithVersion(const QString& localPath,const QString& serverPath);
|
||||
void sendQTConnect();
|
||||
void sendXMLAnswer(QByteArray array);
|
||||
void sendXMLAnswer(const QByteArray& array);
|
||||
void sendFinish();
|
||||
void sendChangeVersion(StreamingVersionData *streamingVersion);
|
||||
void sendDeleteVersion(StreamingVersionData *streamingVersion);
|
||||
void sendCopyVersion(QString versionName);
|
||||
void sendCopyVersion(const QString& versionName);
|
||||
void sendCheckHash();
|
||||
void sendPacketType(PacketType packetType);
|
||||
|
||||
~SendSystem();
|
||||
~SendSystem(){};
|
||||
signals:
|
||||
void sigSend();
|
||||
QByteArray sigGetXmlAnswer(QString);
|
||||
|
||||
public slots:
|
||||
void xmlAnswer(QString message);
|
||||
void xmlAnswer(const QString& message);
|
||||
private:
|
||||
QTcpSocket *socket;
|
||||
int readSize;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user