2022-09-29 17:36:55 +08:00
|
|
|
#ifndef GUI_WORKLISTMANAGER_H
|
|
|
|
|
#define GUI_WORKLISTMANAGER_H
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
2023-08-28 16:31:52 +08:00
|
|
|
#include <QList>
|
2022-09-29 17:36:55 +08:00
|
|
|
|
|
|
|
|
#include "forms/select/PatientInformation.h"
|
|
|
|
|
|
|
|
|
|
class WorkListManager
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
WorkListManager();
|
|
|
|
|
~WorkListManager();
|
|
|
|
|
|
2023-08-28 16:31:52 +08:00
|
|
|
static QList<PatientInformationPointer> getPatientFromWorkList(const QString& aAccessionNum, const QString& aPatientId);
|
2022-09-29 17:36:55 +08:00
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-28 16:31:52 +08:00
|
|
|
#endif //GUI_WORKLISTMANAGER_H
|