码蚁0817班级,AI项目,脸谱,双团队架构,赛马机制
lfp0404
2024-12-23 9438d4bacad4ca67e3090574fcf41df799237e7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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();
}