mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
34 lines
655 B
C
34 lines
655 B
C
#ifndef DIALOGEDITTRAINEE_H
|
|
#define DIALOGEDITTRAINEE_H
|
|
|
|
#include <QDialog>
|
|
#include "trainee.h"
|
|
#include "computersLocations.h"
|
|
|
|
namespace Ui {
|
|
class DialogEditTrainee;
|
|
}
|
|
|
|
class DialogEditTrainee : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DialogEditTrainee(ComputersLocations* computersLocations, QWidget *parent = nullptr);
|
|
~DialogEditTrainee();
|
|
|
|
void setTrainee(Trainee trainee);
|
|
Trainee getTrainee();
|
|
|
|
private slots:
|
|
void on_comboLocation_currentIndexChanged(const QString &arg1);
|
|
|
|
private:
|
|
Ui::DialogEditTrainee *ui;
|
|
ComputersLocations* computersLocations;
|
|
|
|
QString nameGroup;
|
|
};
|
|
|
|
#endif // DIALOGEDITTRAINEE_H
|