mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
27 lines
501 B
C++
27 lines
501 B
C++
#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
|