12345678910111213141516171819202122 |
- #ifndef SETINFOWIDGET_H
- #define SETINFOWIDGET_H
- #include <QWidget>
- namespace Ui {
- class SetInfoWidget;
- }
- class SetInfoWidget : public QWidget
- {
- Q_OBJECT
- public:
- explicit SetInfoWidget(QWidget *parent = nullptr);
- ~SetInfoWidget();
- private:
- Ui::SetInfoWidget *ui;
- };
- #endif // SETINFOWIDGET_H
|