#ifndef DIALOGREDACTORINSTRUCTORS_H #define DIALOGREDACTORINSTRUCTORS_H #include #include #include "connectortoserver.h" #include "editorinstructors.h" class DialogRedactorInstructors : public QDialog { Q_OBJECT public: DialogRedactorInstructors(ConnectorToServer* connectorToServer, bool adminMode, QWidget *parent = nullptr); ~DialogRedactorInstructors(); void closeEvent(QCloseEvent *event) override; private: EditorInstructors* editorInstructors; }; #endif // DIALOGREDACTORINSTRUCTORS_H