Files
GUI/src/dicom/WorkListManager.h

20 lines
384 B
C
Raw Normal View History

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