mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-29 20:05:38 +03:00
27 lines
536 B
C++
27 lines
536 B
C++
#include <QHBoxLayout>
|
|
#include <QMessageBox>
|
|
|
|
#include "mainwindow.h"
|
|
#include "./ui_mainwindow.h"
|
|
|
|
|
|
MainWindow::MainWindow(QWidget *parent)
|
|
: QMainWindow(parent)
|
|
, ui(new Ui::MainWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
m_instructorsAndTraineesWidget = new InstructorsAndTraineesWidget(this);
|
|
ui->horizontalLayout->addWidget(m_instructorsAndTraineesWidget);
|
|
|
|
this->move(0, 0);
|
|
this->showNormal();
|
|
//this->showMaximized();
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
delete m_instructorsAndTraineesWidget;
|
|
delete ui;
|
|
}
|