This commit is contained in:
2019-10-01 16:09:31 +02:00
parent 19363e3e37
commit c7cd72f4bf
5 changed files with 191 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#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