mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
34 lines
641 B
C++
34 lines
641 B
C++
#ifndef DIALOGAUTHORIZATIONINSTRUCTOR_H
|
|
#define DIALOGAUTHORIZATIONINSTRUCTOR_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_dialogauthorizationinstructor.h"
|
|
|
|
namespace Ui {
|
|
class DialogAuthorizationInstructor;
|
|
}
|
|
|
|
class DialogAuthorizationInstructor : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DialogAuthorizationInstructor(QWidget *parent = nullptr);
|
|
~DialogAuthorizationInstructor();
|
|
|
|
QString getLogin()
|
|
{
|
|
return ui->editLogin->text();
|
|
}
|
|
|
|
QString getPassword()
|
|
{
|
|
return ui->editPassword->text();
|
|
}
|
|
|
|
private:
|
|
Ui::DialogAuthorizationInstructor *ui;
|
|
};
|
|
|
|
#endif // DIALOGAUTHORIZATIONINSTRUCTOR_H
|