21 lines
549 B
C++
21 lines
549 B
C++
#ifndef GUI_PATIENTDIALOG_H
|
|
#define GUI_PATIENTDIALOG_H
|
|
#include "GUIFormBaseDialog.h"
|
|
class PatientDetailForm;
|
|
class PatientInformation;
|
|
class PatientConfirmDialog : public GUIFormBaseDialog
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
PatientDetailForm* mPatientDetail;
|
|
public:
|
|
PatientConfirmDialog(QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
|
~PatientConfirmDialog();
|
|
void setPatientInformation(PatientInformation* information, int type);
|
|
protected:
|
|
bool updateReferenceData() override;
|
|
};
|
|
|
|
|
|
#endif /* GUI_PATIENTDIALOG_H */
|