Add WorkList Module.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user