This commit is contained in:
2022-10-24 20:41:50 +03:00
commit 1245541a3b
9 changed files with 152 additions and 0 deletions

22
src/mainwindow.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H