Files
GUI/src/SelectFormWidget.h

22 lines
383 B
C
Raw Normal View History

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();
private:
2022-03-15 16:22:58 +08:00
QString selectedPatientUID;
2021-10-09 16:38:34 +08:00
};
#endif //GUI_SELECTFORMWIDGET_H