mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
feat: change version
This commit is contained in:
@@ -15,6 +15,8 @@
|
||||
|
||||
class RecognizeSystem;
|
||||
class NotifyController;
|
||||
class UpdateController;
|
||||
class HashComparer;
|
||||
|
||||
class DataParser : public QObject
|
||||
{
|
||||
@@ -23,7 +25,11 @@ class DataParser : public QObject
|
||||
|
||||
public:
|
||||
explicit DataParser(QObject *parent = 0);
|
||||
void initialize(RecognizeSystem *recognizeSystem,NotifyController *notifyController);
|
||||
void initialize(RecognizeSystem *recognizeSystem,
|
||||
NotifyController *notifyController,
|
||||
UpdateController *updateController,
|
||||
HashComparer *hashComparer);
|
||||
|
||||
~DataParser();
|
||||
ServerSettings* getServerSettings();
|
||||
void createServerSettings(ServerSettings* serverSettings);
|
||||
@@ -41,6 +47,7 @@ public:
|
||||
|
||||
signals:
|
||||
void sigNotify(QString notify);
|
||||
void sigUpdateFilesOnServer(QList<FileData> *fileSendList);
|
||||
public slots:
|
||||
QByteArray xmlAnswer_notify(QString code);
|
||||
|
||||
@@ -51,6 +58,7 @@ private:
|
||||
ClientAutorization *authPassCache;
|
||||
RecognizeSystem *recognizeSystem;
|
||||
NotifyController *notifyController;
|
||||
HashComparer *hashComparer;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user