Files
EJM_Display/Pages/P13_InsPage.cpp

15 lines
222 B
C++
Raw Normal View History

2025-08-20 23:06:28 +08:00
#include "P13_InsPage.h"
#include "ui_P13_InsPage.h"
P13_InsPage::P13_InsPage(QWidget *parent) :
QWidget(parent),
ui(new Ui::P13_InsPage)
{
ui->setupUi(this);
}
P13_InsPage::~P13_InsPage()
{
delete ui;
}