Added gui prototype

This commit is contained in:
2025-12-25 12:13:44 +01:00
parent 20dc535488
commit 0bec8dfeb7
50 changed files with 727 additions and 0 deletions

18
doc/gui_test/mainwindow.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <ui_mainwindow.h>
class MainWindow : public QMainWindow, public Ui_MainWindow
{
Q_OBJECT
public:
MainWindow (QWidget *parent = nullptr);
~MainWindow ();
};
#endif // MAINWINDOW_H