get a Qt window showing up. 'tis a start, I guess.

This commit is contained in:
Arisotura
2020-04-25 20:43:09 +02:00
parent 0bdafb6295
commit 439ca1b2b5
3 changed files with 38 additions and 10 deletions

View File

@ -19,6 +19,18 @@
#ifndef MAIN_H
#define MAIN_H
// put the class shit here
#include <QMainWindow>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget* parent = nullptr);
~MainWindow();
private:
// private shit goes here
};
#endif // MAIN_H