2023-04-18 14:14:46 +08:00
|
|
|
|
#include "importbninprogramdlg.h"
|
|
|
|
|
#include "ui_importbninprogramdlg.h"
|
|
|
|
|
|
|
|
|
|
ImportBnInProgramDlg::ImportBnInProgramDlg(QWidget *parent) :
|
|
|
|
|
LoQDialog(parent),
|
|
|
|
|
ui(new Ui::ImportBnInProgramDlg)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImportBnInProgramDlg::~ImportBnInProgramDlg()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|