initial qt5 main window
This commit is contained in:
parent
68448bd4d9
commit
ace6d29f2b
5 changed files with 78 additions and 9 deletions
18
src/gui/mainwindow.h
Normal file
18
src/gui/mainwindow.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include "ui_mainwindow.h"
|
||||
#include <QMainWindow>
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MainWindow();
|
||||
|
||||
private:
|
||||
Ui::MainWindow ui;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue