#ifndef PATIENTINFORMATIONFORM_H #define PATIENTINFORMATIONFORM_H #include #include "editpatientform.h" namespace Ui { class PatientInformationForm; } class PatientInformationForm : public QWidget { Q_OBJECT public: explicit PatientInformationForm(QWidget *parent = nullptr); ~PatientInformationForm(); void setPatientInformation(PatientInformation* information); void setProtocol(int type); private: Ui::PatientInformationForm *ui; PatientInformation* inf = nullptr; }; #endif // PATIENTINFORMATIONFORM_H