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:
24
LibInstructorsAndTrainees/tasks/dialogtaskscommon.h
Normal file
24
LibInstructorsAndTrainees/tasks/dialogtaskscommon.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef DIALOGTASKSCOMMON_H
|
||||
#define DIALOGTASKSCOMMON_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDialog>
|
||||
|
||||
#include "viewertaskscommon.h"
|
||||
|
||||
|
||||
class DialogTasksCommon : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
DialogTasksCommon(ConnectorToServer* connectorToServer, AMMtasksWidget* ammTasksWidget_common, FIMtasksWidget* fimTasksWidget_common,
|
||||
QWidget *parent = nullptr);
|
||||
~DialogTasksCommon();
|
||||
|
||||
void closeEvent(QCloseEvent *event) override;
|
||||
|
||||
private:
|
||||
ViewerTasksCommon* viewerTasks;
|
||||
};
|
||||
|
||||
#endif // DIALOGTASKSCOMMON_H
|
||||
Reference in New Issue
Block a user