15 lines
299 B
C++
15 lines
299 B
C++
|
|
#include "patientinformationform.h"
|
||
|
|
#include "ui_patientinformationform.h"
|
||
|
|
|
||
|
|
PatientInformationForm::PatientInformationForm(QWidget *parent) :
|
||
|
|
QWidget(parent),
|
||
|
|
ui(new Ui::PatientInformationForm)
|
||
|
|
{
|
||
|
|
ui->setupUi(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
PatientInformationForm::~PatientInformationForm()
|
||
|
|
{
|
||
|
|
delete ui;
|
||
|
|
}
|