mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
fead: load without animation
This commit is contained in:
31
Core/hashcomparer.h
Normal file
31
Core/hashcomparer.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef HASHCOMPARER_H
|
||||
#define HASHCOMPARER_H
|
||||
|
||||
#include "FileData.h"
|
||||
#include "dataparser.h"
|
||||
#include "tools.h"
|
||||
|
||||
#include <QObject>
|
||||
#include <QFile>
|
||||
#include <updatenotifywidget.h>
|
||||
|
||||
class UpdateNotifyWidget;
|
||||
class HashComparer :public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit HashComparer(DataParser *dataParser,QObject *parent = nullptr);
|
||||
void CompareDeltas();
|
||||
~HashComparer();
|
||||
|
||||
void showDeltas();
|
||||
void setWidget(UpdateNotifyWidget *updateWidget);
|
||||
signals:
|
||||
void sigCallCheck();
|
||||
private:
|
||||
UpdateNotifyWidget* updateWidget;
|
||||
QList<FileData> *filesForUpdate;
|
||||
DataParser *dataParser;
|
||||
};
|
||||
|
||||
#endif // HASHCOMPARER_H
|
||||
Reference in New Issue
Block a user