#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();
|
|
void on_pushButton_4_clicked();
|
|
private:
|
Ui::LoginMainWindow *ui;
|
RegisterMainWindow *m_register;
|
};
|
|
#endif // LOGINMAINWINDOW_H
|