Files
RRJServer/testDB/testDBpgSQL/mainwindow.cpp
2024-11-01 11:45:13 +03:00

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;
}