20 lines
384 B
C++
20 lines
384 B
C++
#ifndef GUI_WORKLISTMANAGER_H
|
|
#define GUI_WORKLISTMANAGER_H
|
|
|
|
#include <QString>
|
|
#include <QList>
|
|
|
|
#include "forms/select/PatientInformation.h"
|
|
|
|
class WorkListManager
|
|
{
|
|
public:
|
|
WorkListManager();
|
|
~WorkListManager();
|
|
|
|
static QList<PatientInformationPointer> getPatientFromWorkList(const QString& aAccessionNum, const QString& aPatientId);
|
|
|
|
};
|
|
|
|
#endif //GUI_WORKLISTMANAGER_H
|