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

@@ -0,0 +1,18 @@
#ifndef GUI_WORKLISTMANAGER_H
#define GUI_WORKLISTMANAGER_H
#include <QString>
#include "forms/select/PatientInformation.h"
class WorkListManager
{
public:
WorkListManager();
~WorkListManager();
static PatientInformationPointer getPatientFromWorkList(const QString& aAccessionNum, const QString& aPatientId);
};
#endif //GUI_WORKLISTMANAGER_H