Add sub for main project

This commit is contained in:
E. Kozlovskaya 2021-01-03 21:22:36 +07:00
parent b13775a0d5
commit 170a24670d
6 changed files with 96 additions and 0 deletions

21
iFacility/loginwindow.h Normal file
View file

@ -0,0 +1,21 @@
#ifndef LOGINWINDOW_H
#define LOGINWINDOW_H
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class LoginWindow; }
QT_END_NAMESPACE
class LoginWindow : public QMainWindow
{
Q_OBJECT
public:
LoginWindow(QWidget *parent = nullptr);
~LoginWindow();
private:
Ui::LoginWindow *ui;
};
#endif // LOGINWINDOW_H