码蚁0817班级,AI项目,脸谱,双团队架构,赛马机制
马喜龙
2024-12-13 e8ac273ab1f7beb9f591a5f2edb1e7cf7fc4f47e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef LOGINMAINWINDOW_H
#define LOGINMAINWINDOW_H
 
#include <QMainWindow>
#include"registermainwindow.h"
 
namespace Ui {
class LoginMainWindow;
}
 
class LoginMainWindow : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit LoginMainWindow(QWidget *parent = 0);
    ~LoginMainWindow();
 
private slots:
    void on_pushButton_2_clicked();
 
    void returnLogin();
 
private:
    Ui::LoginMainWindow *ui;
    RegisterMainWindow *m_register;
};
 
#endif // LOGINMAINWINDOW_H