18 lines
359 B
C
18 lines
359 B
C
|
|
#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
|