refactor: Scan process.

This commit is contained in:
sunwen
2024-05-24 13:49:54 +08:00
parent 9c72bee9f7
commit 370e7326bc
18 changed files with 921 additions and 74 deletions

View File

@@ -23,6 +23,8 @@ public:
PatientInformationPointer getPatientInformation();
int getProtocol();
QString getProtocolString(ScanProtocal aProtocal);
void setExecuteProtocol(bool aIsLeft);
void clear();
const char * getCurrentPatientJsonString(bool emptyScan);
QString getPatientID();
@@ -30,6 +32,7 @@ public:
private:
Ui::PatientInformationForm *mUI;
PatientInformationPointer mInfo;
bool mIsExecuteProtocolLeft = false;
ScanProtocal mCurrentProtocol = LSTAND;
char * mJsonStr = nullptr;
};