mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
refact1
This commit is contained in:
30
LibInstructorsAndTrainees/tasks/dialoglistsubproc.h
Normal file
30
LibInstructorsAndTrainees/tasks/dialoglistsubproc.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef DIALOGLISTSUBPROC_H
|
||||
#define DIALOGLISTSUBPROC_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDialog>
|
||||
|
||||
#include "connectortoserver.h"
|
||||
#include "listsubproc.h"
|
||||
|
||||
class DialogListSubProc : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
DialogListSubProc(QWidget *parent = nullptr);
|
||||
~DialogListSubProc();
|
||||
|
||||
void closeEvent(QCloseEvent *event) override;
|
||||
|
||||
public slots:
|
||||
void slot_Accepted();
|
||||
|
||||
public:
|
||||
void setTask(TaskAmmFim* task);
|
||||
bool getListCheckedSubProc(QList<SubProc>* listSubProcCtrl);
|
||||
|
||||
private:
|
||||
ListSubProc* listSubProcCtrl;
|
||||
};
|
||||
|
||||
#endif // DIALOGLISTSUBPROC_H
|
||||
Reference in New Issue
Block a user