Наша сборка Qt VS Tools
giy
2022-09-02 ca47896204482bf4a6979e3838bf7f09f61cebeb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
 
#include <QtWidgets/QMainWindow>
#include "ui_QtProjectV100.h"
 
class QtProjectV100 : public QMainWindow
{
    Q_OBJECT
 
public:
    QtProjectV100(QWidget *parent = nullptr);
    ~QtProjectV100();
 
private:
    Ui::QtProjectV100Class ui;
};