Scan tab Patient information logic and protocol logic.

This commit is contained in:
Krad
2021-10-12 17:43:12 +08:00
parent 68a7f32027
commit 14169b3072
4 changed files with 48 additions and 4 deletions

View File

@@ -6,11 +6,18 @@
#define GUI_SCANFORMWIDGET_H
#include "tabformwidget.h"
class PatientInformationForm;
class ScanFormWidget :public TabFormWidget {
Q_OBJECT
public:
explicit ScanFormWidget(QWidget *parent = nullptr);
~ScanFormWidget();
private:
PatientInformationForm* pat_inf= nullptr;
private slots:
void protocolChanged(int type);
};