mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
вынес DialogChekerTask
This commit is contained in:
25
InstructorsAndTrainees/tasks/dialogchekertask.h
Normal file
25
InstructorsAndTrainees/tasks/dialogchekertask.h
Normal 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
|
||||
Reference in New Issue
Block a user