sea_transport_project/sea_transport/authwindow.h
2020-12-21 23:39:04 +07:00

28 lines
407 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
public:
explicit AuthWindow(QWidget *parent = nullptr);
~AuthWindow();
private:
Ui::AuthWindow *ui;
void on_auth_requested();
};
#endif // AUTHWINDOW_H