initial commit

This commit is contained in:
2019-10-08 09:51:07 +02:00
parent 404ebb6891
commit ffc33b6d2a
5 changed files with 114 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef CMAINWINDOW_H
#define CMAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class cMainWindow;
}
class cMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit cMainWindow(QWidget *parent = nullptr);
~cMainWindow();
private:
Ui::cMainWindow *ui;
};
#endif // CMAINWINDOW_H