Files
GUI/src/patientinformationform.cpp

15 lines
299 B
C++
Raw Normal View History

2021-10-09 16:38:34 +08:00
#include "patientinformationform.h"
#include "ui_patientinformationform.h"
PatientInformationForm::PatientInformationForm(QWidget *parent) :
QWidget(parent),
ui(new Ui::PatientInformationForm)
{
ui->setupUi(this);
}
PatientInformationForm::~PatientInformationForm()
{
delete ui;
}