mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
23 lines
516 B
C++
23 lines
516 B
C++
#ifndef DIALOGREDACTORTRAINEES_H
|
|
#define DIALOGREDACTORTRAINEES_H
|
|
|
|
#include <QDialog>
|
|
#include <QObject>
|
|
#include "connectortoserver.h"
|
|
#include "editortrainees.h"
|
|
|
|
class DialogRedactorTrainees : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DialogRedactorTrainees(ConnectorToServer* connectorToServer, bool adminMode, QWidget *parent = nullptr);
|
|
~DialogRedactorTrainees();
|
|
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
private:
|
|
EditorTrainees* editorTraineesGroups;
|
|
};
|
|
|
|
#endif // DIALOGREDACTORTRAINEES_H
|