23 lines
385 B
C
23 lines
385 B
C
|
|
#ifndef PATIENTINFORMATIONFORM_H
|
||
|
|
#define PATIENTINFORMATIONFORM_H
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class PatientInformationForm;
|
||
|
|
}
|
||
|
|
|
||
|
|
class PatientInformationForm : public QWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit PatientInformationForm(QWidget *parent = nullptr);
|
||
|
|
~PatientInformationForm();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::PatientInformationForm *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // PATIENTINFORMATIONFORM_H
|