1234567891011121314151617181920212223242526 |
- #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 slots:
-
- private:
- Ui::SetInfoWidget *ui;
- };
- #endif // SETINFOWIDGET_H
|