From 96e1ffb8e2991322c58e2c7ff5864367d9bea529 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 27 Nov 2025 23:38:25 +0800 Subject: add qtapp --- tests/plugins/pack/qtapp/src/mainwindow.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/plugins/pack/qtapp/src/mainwindow.cpp (limited to 'tests/plugins/pack/qtapp/src/mainwindow.cpp') diff --git a/tests/plugins/pack/qtapp/src/mainwindow.cpp b/tests/plugins/pack/qtapp/src/mainwindow.cpp new file mode 100644 index 000000000..7002a54ea --- /dev/null +++ b/tests/plugins/pack/qtapp/src/mainwindow.cpp @@ -0,0 +1,16 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) + : QMainWindow(parent) + , ui(new Ui::MainWindow) +{ + ui->setupUi(this); + setWindowTitle("Qt Widget App"); +} + +MainWindow::~MainWindow() +{ + delete ui; +} + -- cgit v1.3.1