diff options
| author | Alee <Alee14498@gmail.com> | 2019-02-02 22:12:45 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-02-02 22:12:45 -0500 |
| commit | b4c3a2088b8ecdeb33e3b21211357f67a5d79243 (patch) | |
| tree | 361780e3bf79dab14a873002c2808c3196240e16 /mainwindow.h | |
| download | Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.tar.gz Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.tar.bz2 Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.zip | |
Initial Commit (New branch)
Diffstat (limited to 'mainwindow.h')
| -rw-r--r-- | mainwindow.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h new file mode 100644 index 0000000..9353441 --- /dev/null +++ b/mainwindow.h @@ -0,0 +1,22 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = nullptr); + ~MainWindow(); + +private: + Ui::MainWindow *ui; +}; + +#endif // MAINWINDOW_H |
