sea_transport_project/sea_transport/authwindow.h
2020-12-21 21:24:15 +07:00

32 lines
459 B
C++

#ifndef AUTHWINDOW_H
#define AUTHWINDOW_H
#include <system/apparatus.h>
#include "adminpanel.h"
#include <QMainWindow>
#include <QMessageBox>
namespace Ui {
class AuthWindow;
}
class AuthWindow : public QMainWindow
{
Q_OBJECT
bool firstRun;
public:
explicit AuthWindow(QWidget *parent = nullptr, bool fr = false);
~AuthWindow();
private slots:
void on_auth_requested();
private:
Ui::AuthWindow *ui;
};
#endif // AUTHWINDOW_H