2021-10-09 16:38:34 +08:00
|
|
|
//
|
|
|
|
|
// Created by Krad on 2021/10/8.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef GUI_SELECTFORMWIDGET_H
|
|
|
|
|
#define GUI_SELECTFORMWIDGET_H
|
|
|
|
|
|
|
|
|
|
#include "tabformwidget.h"
|
2022-03-15 16:22:58 +08:00
|
|
|
class EditPatientForm;
|
2021-10-09 16:38:34 +08:00
|
|
|
class SelectFormWidget: public TabFormWidget {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit SelectFormWidget(QWidget *parent = nullptr);
|
|
|
|
|
~SelectFormWidget();
|
|
|
|
|
|
2021-10-12 10:28:30 +08:00
|
|
|
private:
|
2022-03-15 16:22:58 +08:00
|
|
|
QString selectedPatientUID;
|
2021-10-09 16:38:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //GUI_SELECTFORMWIDGET_H
|