#include "patientinformationform.h" #include "ui_patientinformationform.h" PatientInformationForm::PatientInformationForm(QWidget *parent) : QWidget(parent), ui(new Ui::PatientInformationForm) { ui->setupUi(this); } PatientInformationForm::~PatientInformationForm() { delete ui; }