initial qt5 main window

This commit is contained in:
Martin Brodbeck 2018-07-14 14:03:35 +02:00
parent 68448bd4d9
commit ace6d29f2b
5 changed files with 78 additions and 9 deletions

18
src/gui/mainwindow.h Normal file
View 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