mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
GUI. Заготовка под список подпроцедур
This commit is contained in:
26
InstructorsAndTrainees/tasks/dialoglistsubproc.h
Normal file
26
InstructorsAndTrainees/tasks/dialoglistsubproc.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef DIALOGLISTSUBPROC_H
|
||||
#define DIALOGLISTSUBPROC_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDialog>
|
||||
|
||||
#include "connectortoserver.h"
|
||||
#include "listsubproc.h"
|
||||
|
||||
class DialogListSubProc : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
DialogListSubProc(ConnectorToServer* connectorToServer, QWidget *parent = nullptr);
|
||||
~DialogListSubProc();
|
||||
|
||||
void closeEvent(QCloseEvent *event) override;
|
||||
|
||||
public:
|
||||
void setTask(TaskAmmFim* task);
|
||||
|
||||
private:
|
||||
ListSubProc* listSubProc;
|
||||
};
|
||||
|
||||
#endif // DIALOGLISTSUBPROC_H
|
||||
Reference in New Issue
Block a user