14 lines
219 B
C++
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;
|
|
}
|