删除一些文件

This commit is contained in:
2021-02-05 20:15:33 +08:00
parent 759a50460e
commit 6d47b5ecf8
15 changed files with 24 additions and 2061 deletions
+4 -2
View File
@@ -17,10 +17,12 @@ DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
main.cpp \
mainwindow.cpp
mainwindow.cpp \
my.cpp
HEADERS += \
mainwindow.h
mainwindow.h \
my.h
FORMS += \
mainwindow.ui
+2
View File
@@ -1,11 +1,13 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "my.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
my->my();
}
MainWindow::~MainWindow()
+6
View File
@@ -0,0 +1,6 @@
#include "my.h"
my::my()
{
}
+12
View File
@@ -0,0 +1,12 @@
#ifndef MY_H
#define MY_H
#include <QMainWindow>
class my : public QMainWindow
{
public:
my();
};
#endif // MY_H