вынес DialogChekerTask

This commit is contained in:
2025-09-18 12:17:28 +03:00
parent af243cc4d8
commit a2cd5280bd
10 changed files with 120 additions and 53 deletions

View File

@@ -0,0 +1,25 @@
#ifndef DIALOGCHEKERTASK_H
#define DIALOGCHEKERTASK_H
#include <QDialog>
#include <QObject>
#include "checkertask.h"
class DialogChekerTask : public QDialog
{
Q_OBJECT
public:
DialogChekerTask(ConnectorToServer* connectorToServer, QString type, QWidget *parent = nullptr);
~DialogChekerTask();
void closeEvent(QCloseEvent *event) override;
public:
void setTask(TaskAmmFim* task);
bool getFlChanged();
private:
CheckerTask* checkerTask;
};
#endif // DIALOGCHEKERTASK_H