Initial files

This commit is contained in:
thepra
2017-08-28 08:17:35 +02:00
commit 54c03d7582
5 changed files with 118 additions and 0 deletions

23
mainwindow.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = root);
~MainWindow();
private:
constexpr static QWidget* root = 0;
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H