Add sub for main project
This commit is contained in:
parent
b13775a0d5
commit
170a24670d
6 changed files with 96 additions and 0 deletions
21
iFacility/loginwindow.h
Normal file
21
iFacility/loginwindow.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue