Add WorkList Module.

This commit is contained in:
sunwen
2022-09-29 17:36:55 +08:00
parent 1fe306b532
commit 3a6a755ef1
22 changed files with 803 additions and 4 deletions

View File

@@ -23,6 +23,9 @@ enum PatientInformationEnum{
#undef ADD_PATIENT_PROPERTY
};
#include <QObject>
#include <QSharedPointer>
/**
* @brief this class was designed to be a edit form,
* but now has been change to a detail display class.
@@ -33,7 +36,9 @@ public:
#define ADD_PATIENT_PROPERTY(val) QString val;
EDIT_PATIENT();
#undef ADD_PATIENT_PROPERTY
PatientInformation(){
PatientInformation()
: QObject()
{
this->Flag = QString("0");
}
PatientInformation* Copy()
@@ -48,4 +53,5 @@ public:
return n;
}
};
typedef QSharedPointer<PatientInformation> PatientInformationPointer;
#endif //GUI_PATIENTINFORMATION_H