1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #include "registermainwindow.h"
| #include "ui_registermainwindow.h"
|
| RegisterMainWindow::RegisterMainWindow(QWidget *parent) :
| QMainWindow(parent),
| ui(new Ui::RegisterMainWindow)
| {
| ui->setupUi(this);
| }
|
| RegisterMainWindow::~RegisterMainWindow()
| {
| delete ui;
| }
|
| void RegisterMainWindow::on_pushButton_2_clicked()
| {
| emit toLogin();
| }
|
|