Начало

This commit is contained in:
2022-10-04 15:18:05 +03:00
commit ed1a09f3af
40 changed files with 5553 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#ifndef TEST_WINDOW_HPP_
#define TEST_WINDOW_HPP_
#pragma once
#include "ui_test_window.h"
#include <QMainWindow>
class TestWindow : public QMainWindow, private Ui::TestWindow
{
Q_OBJECT
public:
TestWindow( QMainWindow* parent = nullptr );
virtual ~TestWindow();
};
#endif /* TEST_WINDOW_HPP_ */