Newer
Older
CasicIrisIdentify / IdentifyForm.cpp
TAN YUE on 31 Oct 2023 231 bytes 20231031 初始创建
#include "IdentifyForm.h"
#include "ui_IdentifyForm.h"

IdentifyForm::IdentifyForm(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::IdentifyForm)
{
    ui->setupUi(this);
}

IdentifyForm::~IdentifyForm()
{
    delete ui;
}