initial commit

This commit is contained in:
Herwig Birke
2022-11-21 13:47:43 +01:00
parent 5ba265f77f
commit 614fa0a8b7
6 changed files with 211 additions and 41 deletions
+27
View File
@@ -0,0 +1,27 @@
#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;
protected:
void closeEvent(QCloseEvent* event);
};
#endif // CMAINWINDOW_H