码蚁0817班级,AI项目,脸谱,双团队架构,赛马机制
2259870529
2024-12-16 fb9174c6186c070af15871622eeb348d3bec981b
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();
}