Files
GUI/src/SelectFormWidget.h
2022-03-15 16:22:58 +08:00

22 lines
383 B
C++

//
// Created by Krad on 2021/10/8.
//
#ifndef GUI_SELECTFORMWIDGET_H
#define GUI_SELECTFORMWIDGET_H
#include "tabformwidget.h"
class EditPatientForm;
class SelectFormWidget: public TabFormWidget {
Q_OBJECT
public:
explicit SelectFormWidget(QWidget *parent = nullptr);
~SelectFormWidget();
private:
QString selectedPatientUID;
};
#endif //GUI_SELECTFORMWIDGET_H