Added demos.

This commit is contained in:
2025-12-30 23:34:28 +01:00
parent 26069dc4e4
commit 0b67f4c166
24 changed files with 2784 additions and 6 deletions

View File

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