sea_transport_project/authwindow.cpp
2020-09-10 00:11:33 +07:00

14 lines
219 B
C++

#include "authwindow.h"
#include "ui_authwindow.h"
AuthWindow::AuthWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::AuthWindow)
{
ui->setupUi(this);
}
AuthWindow::~AuthWindow()
{
delete ui;
}