initial commit

This commit is contained in:
2019-10-28 09:31:44 +01:00
parent 77656f3fe4
commit 0896dcae4d
6 changed files with 166 additions and 36 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef CMAINWINDOW_H
#define CMAINWINDOW_H
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class cMainWindow; }
QT_END_NAMESPACE
class cMainWindow : public QMainWindow
{
Q_OBJECT
public:
cMainWindow(QWidget *parent = nullptr);
~cMainWindow();
private:
Ui::cMainWindow *ui;
};
#endif // CMAINWINDOW_H